Swift Zip文件压缩与解压框架
Posted swift语言
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift Zip文件压缩与解压框架相关的知识,希望对你有一定的参考价值。
Swift Zip文件压缩与解压框架。
示例代码:
1 |
do { |
2 |
let filePath = Bundle.main.url(forResource: "file" , withExtension: "zip" )! |
3 |
let unzipDirectory = try Zip.quickUnzipFile(filePath) // Unzip |
4 |
let zipFilePath = try Zip.quickZipFiles([filePath], fileName: "archive" ) // Zip |
5 |
} |
6 |
catch { |
7 |
print( "Something went wrong" ) |
8 |
} |
开源代码:
https://github.com/marmelroy/Zip
文章来自:51swift.com
以上是关于Swift Zip文件压缩与解压框架的主要内容,如果未能解决你的问题,请参考以下文章