I am using zip/zipfiles and need to use the old 32-bit format. A quick test with a trivial file showed it was using the Zip64 format. Is there a way to use the original 32-bit format for zip archives? I originally posted for help on the libzip forum and the reply was the old format is used provided the size limit is not exceeded.
While looking at 'zip.h' i notice a function 'zip_set_file_compression' that is not replicated in 'libzim.nim'. This might be a clue that I can investigate as that would allow use of 'ZIP_CM_DEFLATE (old 32-bit format) and 'ZIP_CM_DEFLATE64' (which I am assuming id the default). I am working on writing an 'epub' and I think they prefer the 32-bit format.