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

Relativity.DataExchange.Io.IFileInfo

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