VirtualBox

Changeset 77233 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Feb 9, 2019 1:57:33 PM (6 years ago)
Author:
vboxsync
Message:

IPRT: Some new FS types.

Location:
trunk/src/VBox/Runtime/r3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/fs.cpp

    r76553 r77233  
    212212        case RTFSTYPE_FAT:          return "fat";
    213213        case RTFSTYPE_EXFAT:        return "exfat";
     214        case RTFSTYPE_REFS:         return "refs";
    214215
    215216        case RTFSTYPE_ZFS:          return "zfs";
     
    218219
    219220        case RTFSTYPE_HFS:          return "hfs";
     221        case RTFSTYPE_APFS:         return "apfs";
    220222        case RTFSTYPE_AUTOFS:       return "autofs";
    221223        case RTFSTYPE_DEVFS:        return "devfs";
  • trunk/src/VBox/Runtime/r3/nt/fs-nt.cpp

    r77231 r77233  
    225225        else if (IS_FS("HPFS"))
    226226            *penmType = RTFSTYPE_HPFS;
     227        else if (IS_FS("ReFS")) /** @todo verify ReFS signature. */
     228            *penmType = RTFSTYPE_REFS;
    227229        else if (IS_FS("VBoxSharedFolderFS"))
    228230            *penmType = RTFSTYPE_VBOXSHF;
  • trunk/src/VBox/Runtime/r3/posix/fs-posix.cpp

    r76553 r77233  
    295295                if (!strcmp("hfs", statfsBuf.f_fstypename))
    296296                    *penmType = RTFSTYPE_HFS;
     297                else if (!strcmp("apfs", statfsBuf.f_fstypename)) /** @todo verify apfs signature. */
     298                    *penmType = RTFSTYPE_APFS;
    297299                else if (   !strcmp("fat", statfsBuf.f_fstypename)
    298300                         || !strcmp("msdos", statfsBuf.f_fstypename))
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette