Read Xbox FAT root directory.

This commit is contained in:
2019-04-07 13:31:27 +01:00
parent 6d43c83712
commit c25d37b3c2
4 changed files with 97 additions and 11 deletions

View File

@@ -42,16 +42,18 @@ namespace DiscImageChef.Filesystems.FATX
{
public partial class XboxFatPlugin : IReadOnlyFilesystem
{
ushort[] fat16;
uint[] fat32;
ulong fatStartSector;
ulong firstClusterSector;
IMediaImage imagePlugin;
bool littleEndian;
bool mounted;
Partition partition;
uint sectorsPerCluster;
FileSystemInfo stat;
uint bytesPerCluster;
ushort[] fat16;
uint[] fat32;
ulong fatStartSector;
ulong firstClusterSector;
IMediaImage imagePlugin;
bool littleEndian;
bool mounted;
Partition partition;
Dictionary<string, DirectoryEntry> rootDirectory;
uint sectorsPerCluster;
FileSystemInfo stat;
Superblock superblock;
public FileSystemType XmlFsType { get; private set; }