Alquimiaware.NuGetUnity.FileSystemPackageProvider.IsPackageSource C# (CSharp) 메소드

IsPackageSource() 공개 메소드

public IsPackageSource ( string packagesFolderPath ) : bool
packagesFolderPath string
리턴 bool
        public bool IsPackageSource(string packagesFolderPath)
        {
            return Directory.Exists(packagesFolderPath)
                && !IsEmpty(packagesFolderPath);
        }