Implement LFN namespace in FAT.

This commit is contained in:
2019-04-27 13:04:59 +01:00
parent 511378a6be
commit c12b0d91db
6 changed files with 138 additions and 14 deletions

View File

@@ -76,7 +76,9 @@ namespace DiscImageChef.Filesystems.FAT
public Dictionary<string, string> Namespaces =>
new Dictionary<string, string>
{
{"dos", "DOS (8.3 all uppercase)"}, {"nt", "Windows NT (8.3 mixed case, default)"}
{"dos", "DOS (8.3 all uppercase)"},
{"nt", "Windows NT (8.3 mixed case)"},
{"lfn", "Long file names (default)"}
};
static Dictionary<string, string> GetDefaultOptions() =>