Cosmos/source/Cosmos.Kernel.FileSystems/ext2/ext2FS.cs
smremde_cp b0c150790e added mbr read/write support
added initial filesystem objects for review
added the ability to use a file as a disk (see filesystem test project)
clead up some redundant fs stuff
2008-06-05 22:16:24 +00:00

37 lines
No EOL
955 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.FileSystem.ext2 {
/*
public class Ext2FS: FileSystem {
public Ext2FS(Hardware.BlockDevice aBackend)
: base(aBackend) {
}
public override ulong Read(string[] aFile, ulong aStart, ulong aCount, byte[] aBuffer) {
throw new NotImplementedException();
}
public override ulong Write(string[] aFile, ulong aStart, ulong aCount, byte[] aBuffer) {
throw new NotImplementedException();
}
public override void DeleteFile(string[] aFile) {
throw new NotImplementedException();
}
public override void CreateFile(string[] aFile) {
throw new NotImplementedException();
}
public override void MoveFile(string[] aSource, string[] aDest) {
throw new NotImplementedException();
}
public override string[] GetDirContents(string[] aDir) {
throw new NotImplementedException();
}
}
* */
}