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

IsPackageSource() public method

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