Files
libremetaverse/CSJ2K/Util/IFileInfo.cs

21 lines
223 B
C#

namespace CSJ2K.Util
{
public interface IFileInfo
{
#region PROPERTIES
string Name { get; }
string FullName { get; }
bool Exists { get; }
#endregion
#region METHODS
bool Delete();
#endregion
}
}