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

FileSystem

public static class FileSystem
Defines a singleton file system instance. This should be constructor injected where file system API usage is required.
using System; namespace Relativity.DataExchange.Io { [CLSCompliant(false)] public static class FileSystem { public static IFileSystem Instance => new FileSystemWrap(); } }