Objective-Zip icon indicating copy to clipboard operation
Objective-Zip copied to clipboard

An object-oriented friendly wrapper library for ZLib and MiniZip, in Objective-C for iOS and OS X

Results 38 Objective-Zip issues
Sort by recently updated
recently updated
newest added

Hello all, I am using Objective-zip library in my project However when I create zip file with password I am not able to open it. It always says that password...

The 1.0.5 release removes the NSDate+DOSDate.h file but does not remove the dependency on it in OZZipFile.m So a clean pod install on a new machine, for instance, causes a...

What is the point of case `if (len > UINT16_MAX) return UNZ_PARAMERROR;` in `unzReadCurrentFile`? It fails on any file more than 65kb.

Related issue: #64 Compiler is giving a warning because the `` start tag is accidentally an end tag ![image](https://user-images.githubusercontent.com/1833895/30944975-7ba5eb2e-a3c9-11e7-80ac-1d8589b1cc8b.png)

Compiler is giving a warning because the start tag is accidentally an end tag ![image](https://user-images.githubusercontent.com/1833895/30945022-acfd6a8a-a3c9-11e7-9cf4-235044fc4e68.png)

Hi I am trying to unzip password protected file. But it gives me expections here is my sample code OZZipFile *unzipFile= [[OZZipFile alloc] initWithFileName:filePath mode:OZZipFileModeUnzip]; ``` [unzipFile goToFirstFileInZip]; BOOL keepReading...

How to know if a file is encrypted before reading it?

Hi ! On version 1.0.5. I found some zip file error by following code: if (len > UINT16_MAX) return UNZ_PARAMERROR; with #define UINT16_MAX 65535 Plesae check. Thank you.

Hi Love this library, but I’m having problems with password-protected zip files. I can create them and open them fine when building as a 64 bit Mac app. However when...

If I'm not mistaken, currently we cannot delete / replace a file in the archive, without extracting all the archive and creating a new one, which is really cumbersome. Do...