db6120375255d73e04edfbbf1a518f9d66dc2512
* Support zip files larger than 2GB. Fixes #7 * Updated readme * Added (commented out) test for large files
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.
Description
Languages
C
79.6%
Objective-C
18.5%
Swift
1.5%
Ruby
0.3%