Calculate size of Xbox FAT and read it to memory.

This commit is contained in:
2019-04-07 11:41:35 +01:00
parent e6a9144259
commit 6d43c83712
5 changed files with 196 additions and 13 deletions

View File

@@ -38,6 +38,12 @@ namespace DiscImageChef.Filesystems.FATX
{
public partial class XboxFatPlugin
{
public Errno ReadDir(string path, out List<string> contents) => throw new NotImplementedException();
public Errno ReadDir(string path, out List<string> contents)
{
contents = null;
if(!mounted) return Errno.AccessDenied;
throw new NotImplementedException();
}
}
}