Replies: 1 comment
-
Feel free to submit a PR. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In our app we use mz_zip_writer_add_path to zip up everything with one call. The only problem with that is there is no way to cancel the operation and it can take several minutes when creating large zips. I was hoping that returning an error code from the add_entry callback would in effect perform a cancel but alas the return value from the callback does nothing:
We could traverse the folder hierarchy ourselves in order to handle the cancel but that is a lot of extra code.
Beta Was this translation helpful? Give feedback.
All reactions