-
Hi @101arrowz! You mentioned here #8 (comment) that progress callback should be pretty easy for zipping files. Is it implemented already or is it something still in feature request list ? If there is some way how to do it, could you please provide some example ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
A progress callback is simple with Gzip/Gunzip, Zlib/Unzlib, and Deflate/Inflate, but not with Zip/Unzip. This is a limitation of me trying to keep the code very simple. I'm soon planning to add support for incrementally adding files to a ZIP archive; would that be all you wanted, or do you also want detailed progress that describes the compression as it's happening on a per-file basis? |
Beta Was this translation helpful? Give feedback.
-
@pippo111, I've fixed this as of v0.5.0, check the new docs and ask if you have any concerns. Thanks for your interest and the feature request! |
Beta Was this translation helpful? Give feedback.
A progress callback is simple with Gzip/Gunzip, Zlib/Unzlib, and Deflate/Inflate, but not with Zip/Unzip. This is a limitation of me trying to keep the code very simple. I'm soon planning to add support for incrementally adding files to a ZIP archive; would that be all you wanted, or do you also want detailed progress that describes the compression as it's happening on a per-file basis?