EntryType
public enum EntryType: String
Represents a type of an entry.
Warning
Deprecated and will be removed in 4.0.FileAttributeType values will be used instead.
-
Normal file.
Declaration
Swift
case normal = "0"
-
Hard linked entry.
Declaration
Swift
case hardLink = "1"
-
Symbolically linked entry.
Declaration
Swift
case symbolicLink = "2"
-
Character special file.
Declaration
Swift
case characterSpecial = "3"
-
Block special file.
Declaration
Swift
case blockSpecial = "4"
-
Directory.
Declaration
Swift
case directory = "5"
-
FIFO special file.
Declaration
Swift
case fifo = "6"
-
Contiguous file.
Declaration
Swift
case contiguous = "7"
-
PAX global extended header. (Should not be encountered separately).
Declaration
Swift
case globalExtendedHeader = "g"
-
PAX local extended header. (Should not be encountered separately).
Declaration
Swift
case localExtendedHeader = "x"
-
Either unknown type, vendor specific or reserved value.
Declaration
Swift
case vendorUnknownOrReserved
View on GitHub
EntryType Enum Reference