Re: [MBS] ZipMBS and Zip64 support?

2020-02-18 Thread Michael Diehr
To revive a very old thread... Catalina apparently does things differently and no longer is happy with these ZipMBS files unless you do some more tweaks. The solution is to properly set the "created by" version number field to : dim zipVersionMadeBy as uint16 = // 03 = unix. 14 hex = 20

Re: [MBS] ZipMBS and Zip64 support?

2014-06-04 Thread Christian Schmitz
Am 03.06.2014 um 23:54 schrieb Michael Diehr m...@xochi.com: Christian - perhaps you could offer us some control over the version # that's output in the zip files? Well, the CreateFile function has several variants and one is with versionMadeBy as integer. Maybe that helps?

Re: [MBS] ZipMBS and Zip64 support?

2014-06-04 Thread Michael Diehr
I did try that but it didn't seem to change the version # output - does it work? If so, what do we pass for versionMadeBy? The Zip specification lists that as a 2-byte value, not a Uint32... Also, I was not sure what to pass for default values for strategy, password, crcForCtyping, and also

Re: [MBS] ZipMBS and Zip64 support?

2014-06-04 Thread Tim Jones
Apple’s ZIP implementation assigns the same 000A version ID to both 32 and 64 bit archives. It’s sounds like you should modify your mini zip library to use Apple’s version ID since the rest of the world really doesn’t care :). Tim On Jun 4, 2014, at 9:57 AM, Christian Schmitz

Re: [MBS] ZipMBS and Zip64 support?

2014-06-04 Thread Christian Schmitz
Am 04.06.2014 um 19:07 schrieb Tim Jones tolis...@me.com: Apple’s ZIP implementation assigns the same 000A version ID to both 32 and 64 bit archives. It’s sounds like you should modify your mini zip library to use Apple’s version ID since the rest of the world really doesn’t care :).