Noticed this little difference between minizip's compatibility interface and the original minizip API:
In unzOpenCurrentFile3() the returned method and level values are always zeroes. For method this is just an inconvenience (because it can be retrieved by unzGetCurrentFileInfo64()), but level is important because there is no other way to retrieve it from an existing .zip. The correct level is useful when re-creating an existing entry in raw mode, to make it as much identical to the original as possible.
Noticed this little difference between minizip's compatibility interface and the original minizip API:
In
unzOpenCurrentFile3()the returnedmethodandlevelvalues are always zeroes. Formethodthis is just an inconvenience (because it can be retrieved byunzGetCurrentFileInfo64()), butlevelis important because there is no other way to retrieve it from an existing .zip. The correctlevelis useful when re-creating an existing entry in raw mode, to make it as much identical to the original as possible.