认识 Zipper

Zipper

Author EMail MIT
Version Platforms Swift
Build Passing Cocoapods Carthage SPM

🏵 简介

Zipper 是 Swift 中轻松处理 ZIP 文件的工具。

📋 要求

类型 要求

平台

iOS

9.0+

macOS

10.11

tvOS

9.0

watchOS

2.0

Linux

使用 `zlib`

IDE

Xcode

10.2+

语言

Swift

5+

📲 安装

CocoaPods

Zipper 可通过 CocoaPods 安装。

use_frameworks!
pod 'Zipper'

手动

Zipper 目录中的所有文件复制到您的项目中。

🛌 依赖

❤️ 贡献

欢迎 Fork 并提交 Pull Requests。

🔖 许可证

Zipper 是开源软件,基于 MIT 许可证。

🔫 用法

import Zipper

let fileManager = FileManager()
let currentDirectoryURL = URL(fileURLWithPath: fileManager.currentDirectoryPath)

压缩

var archiveURL = currentDirectoryURL.appendPathComponent("archive.zip")
var resourcesURL = currentDirectoryURL.appendPathComponent("directory")
// zip:
do {
  try fileManager.zip(item: resourcesURL, to: archive)
} catch _ {}
// or:
guard let archive = Zipper(url: archiveURL, accessMode: .create) else  { return }
do {
  try archive.zip(item: resourcesURL)
} catch {

}

解压缩

var archiveURL = currentDirectoryURL.appendPathComponent("archive.zip")
var destinationURL = currentDirectoryURL.appendPathComponent("directory")
// unzip:
do {
  try fileManager.createDirectory(at: destinationURL, withIntermediateDirectories: true, attributes: nil)
  try fileManager.unzip(item: archiveURL, to: destinationURL)
} catch {

}
// or:
guard let archive = Zipper(url: archiveURL, accessMode: .read) else  { return }
do {
  try archive.unzip(to: destinationURL)
} catch {

}

访问单个条目

var archiveURL = currentDirectoryURL.appendPathComponent("archive.zip")
guard let archive = Zipper(url: archiveURL, accessMode: .read) else  { return }
guard let entry = archive["file.txt"] else { return }
var destinationURL = currentDirectoryURL.appendPathComponent("output.txt")

do {
    try archive.extract(entry, to: destinationURL)
} catch {

}

添加/删除条目

var archiveURL = currentDirectoryURL.appendPathComponent("archive.zip")
var fileURL = currentDirectoryURL.appendPathComponent("file.ext")

添加

guard let archive = Zipper(url: archiveURL, accessMode: .update) else { return }
do {
    try archive.addEntry(with: fileURL.lastPathComponent, relativeTo: fileURL.deletingLastPathComponent())
} catch {

}

删除

guard let entry = archive["file.txt"] else { return }
do {
    try archive.remove(entry)
} catch {

}