Alquimiaware.NuGetUnity.FileSystemPackageProvider.IsEmpty C# (CSharp) Method

IsEmpty() private method

private IsEmpty ( string folderPath ) : bool
folderPath string
return bool
        private bool IsEmpty(string folderPath)
        {
            var di = new DirectoryInfo(folderPath);
            return GetPackageDirectories(di).Length == 0;
        }