Disable ZIP64 output
masterBy default, opening an archive for writing with the literal mode character 'w' enables ZIP64 output. To produce a ZIP archive that is NOT ZIP64, use an alternate mode value that selects the same semantic mode but does not equal the literal 'w'.
Use the following pattern (subtracting 64 from the character literal) to select the non-ZIP64 variant:
- Write mode:
'w' - 64(integer value 55) - Read mode:
'r' - 64 - Append mode:
'a' - 64 - Delete mode:
'd' - 64