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