FileSystemType
public enum FileSystemType: Int
Type of file system on which GZip archive was created.
-
One of many UNIX-like systems.
Note
It seems like modern macOS systems also fall into this category.Declaration
Swift
case unix = 3
-
Older Macintosh systems.
Declaration
Swift
case macintosh = 7
-
File system used in Microsoft™®© Windows™®©.
Declaration
Swift
case ntfs = 11
-
File system was unknown to the archiver.
Declaration
Swift
case unknown = 255
-
File system is one of the rare systems.
Declaration
Swift
case other = 256
View on GitHub
FileSystemType Enumeration Reference