mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Decode TRANS.TBL;1.
This commit is contained in:
@@ -53,6 +53,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
Dictionary<string, DecodedDirectoryEntry> rootDirectoryCache;
|
||||
FileSystemInfo statfs;
|
||||
bool usePathTable;
|
||||
bool useTransTbl;
|
||||
|
||||
public FileSystemType XmlFsType { get; private set; }
|
||||
public Encoding Encoding { get; private set; }
|
||||
@@ -63,7 +64,8 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
public IEnumerable<(string name, Type type, string description)> SupportedOptions =>
|
||||
new (string name, Type type, string description)[]
|
||||
{
|
||||
("use_path_table", typeof(bool), "Use path table for directory traversal")
|
||||
("use_path_table", typeof(bool), "Use path table for directory traversal"),
|
||||
("use_trans_tbl", typeof(bool), "Use TRANS.TBL for filenames")
|
||||
};
|
||||
|
||||
public Dictionary<string, string> Namespaces =>
|
||||
|
||||
Reference in New Issue
Block a user