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

IDirectoryInfo

public interface IDirectoryInfo
Represents an abstract wrapper for the DirectoryInfo class.
using System; namespace Relativity.DataExchange.Io { [CLSCompliant(false)] public interface IDirectoryInfo { bool Exists { get; } string FullName { get; } string Name { get; } void Create(); void Refresh(); } }