mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
367 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|