我想我发现了一些关于上述主题的讨论,但没有一点非常明确。但是我想知道是否有任何用于解压缩多个文件的开源代码。我正在尝试提供可以下载zip文件(具有多个iamges)并在Iphone中提取它的实用程序。
答案 0 :(得分:3)
我推荐我的图书馆SSZipArchive。
用法:
NSString *path = @"path_to_your_zip_file";
NSString *destination = @"path_to_the_folder_where_you_want_it_unzipped";
[SSZipArchive unzipFileAtPath:path toDestination:destination];
非常简单。
答案 1 :(得分:1)
这个问题与您的问题非常接近,答案包括在Cocoa中解压缩文件的源代码链接:"Compression API on the iPhone"。