This library will make you access zip files.
Below you'll find all you need to know to get started.
swift-zip
is designed for Swift 5.3 and later. To depend on the zip package, you need to declare your dependency in your Package.swift
:
.package(url: "https://github.com/sinoru/swift-zip.git", from: "0.0.5"),
and to your application/library target, add "ZIP"
to your dependencies
, e.g. like this:
.target(name: "BestExampleApp", dependencies: [
.product(name: "ZIP", package: "swift-zip")
],