SevenZipEntryInfo
public struct SevenZipEntryInfo : ContainerEntryInfo
Provides access to information about an entry from the 7-Zip container.
-
Declaration
Swift
public let name: String
-
Declaration
Swift
public let size: Int?
-
Declaration
Swift
public let type: ContainerEntryType
-
Declaration
Swift
public let accessTime: Date?
-
Declaration
Swift
public let creationTime: Date?
-
Declaration
Swift
public let modificationTime: Date?
-
Declaration
Swift
public let permissions: Permissions?
-
Entry’s “win attributes”. 7-Zip internal property. May be useful when origin file system’s attributes weren’t POSIX compatible.
Declaration
Swift
public let winAttributes: UInt32?
-
Entry’s attributes in DOS format.
Declaration
Swift
public let dosAttributes: DosAttributes?
-
True, if entry has a stream (data) inside the container. 7-Zip internal propety.
Declaration
Swift
public let hasStream: Bool
-
True, if entry is an empty file. 7-Zip internal property.
Declaration
Swift
public let isEmpty: Bool
-
True, if entry is an anti-file. Used in differential backups to indicate that file should be deleted. 7-Zip internal property.
Declaration
Swift
public let isAnti: Bool
-
CRC32 of entry’s data.
Declaration
Swift
public let crc: UInt32?