SevenZipEntryInfo
public struct SevenZipEntryInfo: ContainerEntryInfo
Provides information about 7-Zip entry.
-
Entry’s name.
Declaration
Swift
public let name: String? -
Entry’s data size.
Declaration
Swift
public let size: Int? -
Undocumented
Declaration
Swift
public struct SevenZipEntryInfo: ContainerEntryInfo -
Entry’s last access time and date.
Declaration
Swift
public let accessTime: Date? -
Entry’s creation time and date.
Declaration
Swift
public let creationTime: Date? -
Entry’s last modification time and date.
Declaration
Swift
public let modificationTime: Date? -
Entry’s UNIX file access permissions.
Declaration
Swift
public let permissions: Permissions?
-
7-Zip internal property which may contain UNIX permissions, type and/or DOS attributes.
Declaration
Swift
public let winAttributes: UInt32? -
Entry’s DOS attributes.
Declaration
Swift
public let dosAttributes: DosAttributes? -
True, if entry has a stream (data) inside 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?
View on GitHub
SevenZipEntryInfo Structure Reference