Relativity.DataExchange.Io.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();
}
}