Implement ReadDir() in Xbox FAT plugin.

This commit is contained in:
2019-04-10 19:15:04 +01:00
parent c25d37b3c2
commit 7b8dd99354
3 changed files with 117 additions and 13 deletions

View File

@@ -32,6 +32,7 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
using DiscImageChef.CommonTypes;
@@ -207,6 +208,9 @@ namespace DiscImageChef.Filesystems.FATX
rootDirectory.Add(filename, entry);
}
cultureInfo = new CultureInfo("en-US", false);
directoryCache = new Dictionary<string, Dictionary<string, DirectoryEntry>>();
return Errno.NoError;
}