Created
October 29, 2013 13:41
-
-
Save theorigin/7214838 to your computer and use it in GitHub Desktop.
An interface definition for the System.IO.Directory class. Allows mocking of code that uses any of these methods
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace VS.Library.Interfaces | |
{ | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Security.AccessControl; | |
public interface IDirectory | |
{ | |
bool Exists(string path); | |
IEnumerable<string> GetFiles(string path, string searchPattern); | |
DirectoryInfo CreateDirectory(string path); | |
DirectoryInfo CreateDirectory(string path, DirectorySecurity directorySecurity); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment