Container

public protocol Container

A type that represents a container with files, directories and/or other data.

  • Retrieve all the entries with their data from the container.

    Declaration

    Swift

    static func open(container: Data) throws -> [Entry]
  • Retrieve information abouth all the entries from the container (without their data).

    Declaration

    Swift

    static func info(container: Data) throws -> [Entry.Info]