Alquimiaware.NuGetUnity.FileSystemPackageProvider.IsEmpty C# (CSharp) Méthode

IsEmpty() private méthode

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