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

IFileInfo

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