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

18 lines
367 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystems.Windows
{
/// <summary>
/// Implementation of operations on the Windows file system.
/// </summary>
public class File : IFile
{
public bool Exists(string path)
{
return true;
}
}
}