Alquimiaware.NuGetUnity.FileSystemFolderCommands.Exists C# (CSharp) Method

Exists() public method

public Exists ( string path ) : bool
path string
return bool
        public bool Exists(string path)
        {
            return Directory.Exists(path);
        }
FileSystemFolderCommands