SevenZipEntryInfo

public struct SevenZipEntryInfo: ContainerEntryInfo

Provides information about 7-Zip entry.

  • 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
  • crc

    CRC32 of entry’s data.

    Declaration

    Swift

    public let crc: UInt32?