FileSystemType
public enum FileSystemType: Int
Type of file system on which gzip archive was created.
-
One of many Linux systems. (It seems like modern macOS systems also fall into this category).
Declaration
Swift
case unix = 3
-
Older Macintosh (Mac OS, OS X) 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 was one of the rare systems..
Declaration
Swift
case other = 256
View on GitHub
FileSystemType Enum Reference