mattconnolly / ZipArchive

zip archive processing for Cocoa - iPhone and OS X
http://code.google.com/p/ziparchive/
MIT License
840 stars 260 forks source link

Some features: unzip to memory, add data as file, append zip file #47

Closed V01dZer0 closed 9 years ago

V01dZer0 commented 9 years ago

Hi matt: Here's some useful features: Unzip to memory: useful in some situation. e.g. use encrypted zip file to store resource files, won't generate unencrypted resource files on disk.

Add data as file instead of file path: when write data to zip, this method will save IO cost for the first write to disk.

Append zip file: common usage for zip, open file in APPEND_STATUS_ADDINZIP mode.

They has been tested in my app for some days. Best Regards