Cosmos/source2/Kernel/System/Cosmos.System/Filesystem/Filesystem.cs
kudzu_cp fcff31810e
2011-03-06 16:35:23 +00:00

18 lines
736 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.System.Filesystem {
public class FileSystem {
// Currently we map to the Windows scheme of single lettter: for drives. Cosmos will
// NOT do this in the future, but it will be able to map paths to things that look like
// drive letters for compatibility with Windows code.
// For now we use Dictionary for simplicity, but in future this will change.
static protected Dictionary<string, FileSystem> mMappings = new Dictionary<string, FileSystem>();
static public void AddMapping(string aPath, FileSystem aFileSystem) {
//mMappings.Add(aPath.ToUpper(), aFileSystem);
}
}
}