Cosmos/source/Cosmos.Kernel.FileSystems/IFile.cs
2008-03-15 11:52:07 +00:00

11 lines
195 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystems
{
public interface IFile
{
bool Exists(string path);
}
}