SevenZipEntryInfo

public struct SevenZipEntryInfo : ContainerEntryInfo

Provides access to information about an entry from the 7-Zip container.

ContainerEntryInfo

7-Zip specific

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

    CRC32 of entry’s data.

    Declaration

    Swift

    public let crc: UInt32?