Relativity.DataExchange.Io.DirectoryWrap
Represents a class object wrapper for the Directory class.
namespace Relativity.DataExchange.Io
{
internal class DirectoryWrap : IDirectory
{
public void CreateDirectory(string path);
public void Delete(string path);
public void Delete(string path, bool recursive);
public void DeleteIfExists(string path, bool recursive, bool throwOnExistsCheck);
public bool Exists(string path);
public bool Exists(string path, bool throwOnExistsCheck);
public IDirectoryInfo GetParent(string path);
}
}