/WPZipArchive

WPZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.

Primary LanguageCMIT LicenseMIT

WPZipArchive

WPZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.

  • Unzip zip files
  • Unzip password protected zip files
  • Create new zip files
  • Append to existing zip files
  • Zip files
  • Zip-up NSData instances (with a filename)

Installation and Setup

CocoaPods

pod install WPZipArchive

Manual

  1. Add the WPZipArchive and minizip folders to your project.
  2. Add the libz library to your target

WPZipArchive requires ARC.

Usage

Objective-C

#import <WPZipArchive/WPZipArchive.h>

// Create
[WPZipArchive createZipFileAtPath: zipPath withContentsOfDirectory: sampleDataPath];

// Unzip
[WPZipArchive unzipFileAtPath:zipPath toDestination: unzipPath];

Swift

@import WPZipArchive

// Create
WPZipArchive.createZipFileAtPath(zipPath, withContentsOfDirectory: sampleDataPath)

// Unzip
WPZipArchive.unzipFileAtPath(zipPath, toDestination: unzipPath)

License

WPZipArchive is protected under the MIT license and our slightly modified version of Minizip 1.1 is licensed under the Zlib license.

Acknowledgments