mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
32 lines
No EOL
832 B
C#
32 lines
No EOL
832 B
C#
//using System;
|
|
//using System.Collections.Generic;
|
|
//using System.IO;
|
|
//using System.Linq;
|
|
//using System.Text;
|
|
//using Cosmos.IL2CPU.Plugs;
|
|
//using Cosmos.System.FileSystem;
|
|
//using Cosmos.System.FileSystem.VFS;
|
|
|
|
//namespace Cosmos.System.Plugs.System.IO
|
|
//{
|
|
// [Plug(Target = typeof(Directory))]
|
|
// public static class DirectoryImpl
|
|
// {
|
|
// private static string mCurrentDirectory = @"/0";
|
|
|
|
// public static string GetCurrentDirectory()
|
|
// {
|
|
// return mCurrentDirectory;
|
|
// }
|
|
|
|
// public static void SetCurrentDirectory(string aPath)
|
|
// {
|
|
// mCurrentDirectory = aPath;
|
|
// }
|
|
|
|
// public static bool Exists(string aPath)
|
|
// {
|
|
// return VFSManager.DirectoryExists(aPath);
|
|
// }
|
|
// }
|
|
//} |