IDirectory
Represents an abstract wrapper for the Directory class.
using System;
namespace Relativity.DataExchange.Io
{
[CLSCompliant(false)]
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);
}
}