db61203752
* Support zip files larger than 2GB. Fixes #7 * Updated readme * Added (commented out) test for large files
915 B
915 B
SSZipArchive
SSZipArchive is a simple utility class for unzipping files originally based on ZipArchive by aish.
Currently it only supports unzipping. In the future, creating zip files will be supported.
Adding to your project
- Add
SSZipArchive.h,SSZipArchive.m, andminizipto your project. - Add the
libzlibrary to your target
Usage
NSString *path = @"path_to_your_zip_file";
NSString *destination = @"path_to_the_folder_where_you_want_it_unzipped";
[SSZipArchive unzipFileAtPath:path toDestination:destination];
License
SSZipArchive is licensed under the MIT license. A slightly modified version of Minizip 1.1 is also included and is licensed under the Zlib license.