I would like to unzip .7z files in objective-c (for mac dev). I am using SSZipArchive, which is really nice, but it will not help me unzip 7z. Could you guys recommend me a good sdk to unzip the 7z? I also need to keep track of progressing during unzipping.(Like the percentage done..) Thanks!!
Asked
Active
Viewed 1,025 times
1 Answers
1
You can Check the Source Code developed by Mo Dejong at 7zip decompresson SDK. It's based on LZMA SDK 9.21 beta
. It includes only decode functions and the adler checksum logic is disabled at compile time, to improve performance.
GoodLuck !!!
-
Have you used this before? Is it possible to check progress during unzipping? or I need to write delegate by myself? Thanks – YU FENG Jun 04 '13 at 14:04
-
-
Ok, I downloaded that sdk. I will take a look at it. Thanks for your help !! :) – YU FENG Jun 04 '13 at 14:43