Relativity.DataExchange.Io.IDirectory
Represents an abstract wrapper for the Directory class.
namespace Relativity.DataExchange.Io
{
public interface IDirectory
{
void CreateDirectory(string path);
void Delete(string path);
void Delete(string path, bool recursive);
void DeleteIfExists(string path, bool recursive, bool throwOnExistsCheck);
bool Exists(string path);
bool Exists(string path, bool throwOnExistsCheck);
IDirectoryInfo GetParent(string path);
}
}