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();
}
}