zip-rs / zip-old

Zip implementation in Rust
MIT License
731 stars 204 forks source link

a new example to show how to write large files (greater than 4GB) #384

Closed Byron closed 5 months ago

Byron commented 1 year ago

This requires DEFLATE64 support, which is seemingly present in the default rust backend.

This example is motivated by a possibly related issue over at flate2.

axnsan12 commented 1 year ago

I believe the flate2 issue OP is referring to decompression of deflate64 (see #382 here)

xudesheng commented 1 year ago

I believe the flate2 issue OP is referring to decompression of deflate64 (see #382 here)

@axnsan12 Thank you, yes, my original issue is how to decompress the file compressed with the deflate64 algorithm.

@Byron Thank you anyway for your example. It's useful. My current focus is on how to decompress

Pr0methean commented 5 months ago

Replaced with https://github.com/zip-rs/zip2/pull/67.