Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Objective C - Accessing files in zip without extracting zip

I'm looking for a way to access files within a zip file without extracting the whole file. All the zip solutions I find on the internet seems to extract the whole zip. Does anyone know of a solution?

like image 335
EZFrag Avatar asked Feb 29 '12 12:02

EZFrag


1 Answers

Google has an objective-c lib based on minizip. http://code.google.com/p/objective-zip/ Supports unzip of individual files

EDIT: the project has moved to GitHub

like image 189
hburde Avatar answered Sep 21 '22 01:09

hburde