NStub.Core.BuildSystem.DirectoryExists C# (CSharp) Method

DirectoryExists() public method

Determines whether the given path refers to an existing directory on disk.
public DirectoryExists ( string directory ) : bool
directory string The path to test.
return bool
        public bool DirectoryExists(string directory)
        {
            return Directory.Exists(directory);
        }