Relativity.DataExchange.Io.FileInfoWrap
Represents a class object wrapper for the FileInfo class.
namespace Relativity.DataExchange.Io
{
internal class FileInfoWrap : IFileInfo
{
public IDirectoryInfo Directory { get; }
public bool Exists { get; }
public string FullName { get; }
public long Length { get; }
public string Name { get; }
public void Refresh();
}
}