ChinhDo.Transactions.TxFileManager.DirectoryExists C# (CSharp) Method

DirectoryExists() public method

Determines whether the specified path refers to a directory that exists on disk.
public DirectoryExists ( string path ) : bool
path string The directory to check.
return bool
        public bool DirectoryExists(string path)
        {
            return Directory.Exists(path);
        }