<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

Relativity.DataExchange.Io.IFileSystem

public interface IFileSystem
Represents an abstract wrapper for the IO wrapper to access and create file system related objects.
namespace Relativity.DataExchange.Io { public interface IFileSystem { IDirectory Directory { get; } IFile File { get; } IPath Path { get; } IDirectoryInfo CreateDirectoryInfo(string path); IFileInfo CreateFileInfo(string fileName); IStreamWriter CreateStreamWriter(string path, bool append); IStreamWriter CreateStreamWriter(string path, bool append, Encoding encoding); IFileSystem DeepCopy(); } }