mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
35 lines
No EOL
943 B
C#
35 lines
No EOL
943 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Kernel.FileSystems {
|
|
public class Ext2FS: BaseFileSystem {
|
|
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();
|
|
}
|
|
}
|
|
} |