mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Adds support for FAT+, closes #14
This commit is contained in:
@@ -214,9 +214,18 @@ namespace DiscImageChef.Filesystems
|
||||
|
||||
// Let's start the fun
|
||||
if(fat32_signature == "FAT32 ")
|
||||
{
|
||||
// TODO: Check with a real FAT+ to see where the version is set
|
||||
if(bpb_sector[0x2A] == 1 || (bpb_sector[0x2B] == 1)
|
||||
{
|
||||
sb.AppendLine("FAT+"); // Seems easy, check reading
|
||||
xmlFSType.Type = "FAT+";
|
||||
}
|
||||
else
|
||||
{
|
||||
sb.AppendLine("Microsoft FAT32"); // Seems easy, check reading
|
||||
xmlFSType.Type = "FAT32";
|
||||
}
|
||||
isFAT32 = true;
|
||||
}
|
||||
else if((first_fat_entry & 0xFFFFFFF0) == 0xFFFFFFF0) // Seems to be FAT16
|
||||
|
||||
@@ -101,7 +101,7 @@ Supported file systems for identification and information only
|
||||
* Linux extended file system 4
|
||||
* Microsoft 12-bit File Allocation Table (FAT12), including Atari ST extensions
|
||||
* Microsoft 16-bit File Allocation Table (FAT16)
|
||||
* Microsoft 32-bit File Allocation Table (FAT32)
|
||||
* Microsoft 32-bit File Allocation Table (FAT32), including FAT+ extension
|
||||
* BSD Fast File System (FFS) / Unix File System (UFS)
|
||||
* BSD Unix File System 2 (UFS2)
|
||||
* Microsoft/IBM High Performance File System (HPFS)
|
||||
|
||||
Reference in New Issue
Block a user