Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
/ WPZipArchive Public archive
forked from ZipArchive/ZipArchive

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

License

Notifications You must be signed in to change notification settings

WPMedia/WPZipArchive

 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 69.2%
  • Objective-C 19.9%
  • C++ 7.8%
  • Swift 2.4%
  • Other 0.7%