Implement path table traversal in ISO9660.

This commit is contained in:
2019-07-29 04:00:51 +01:00
parent 28ad9dac86
commit 93b5c483ec
4 changed files with 155 additions and 4 deletions

View File

@@ -52,6 +52,7 @@ namespace DiscImageChef.Filesystems.ISO9660
PathTableEntryInternal[] pathTable;
Dictionary<string, DecodedDirectoryEntry> rootDirectoryCache;
FileSystemInfo statfs;
bool usePathTable;
public FileSystemType XmlFsType { get; private set; }
public Encoding Encoding { get; private set; }
@@ -60,7 +61,10 @@ namespace DiscImageChef.Filesystems.ISO9660
public string Author => "Natalia Portillo";
public IEnumerable<(string name, Type type, string description)> SupportedOptions =>
new (string name, Type type, string description)[] { };
new (string name, Type type, string description)[]
{
("use_path_table", typeof(bool), "Use path table for directory traversal")
};
public Dictionary<string, string> Namespaces =>
new Dictionary<string, string>