How to get the progress of zipping or unzipping single file? #361
Answered
by
nmoinvaz
AAChartModel
asked this question in
Q&A
-
Is there any method that I can get the progress of processing single file? |
Beta Was this translation helpful? Give feedback.
Answered by
nmoinvaz
Jan 28, 2019
Replies: 1 comment
-
There are examples on how to use the library and get progress found in the minizip.c source file. See |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nmoinvaz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are examples on how to use the library and get progress found in the minizip.c source file. See
minizip_add_progress_cb
andminizip_extract_progress_cb
. If you want to pull the progress, then don't use the zip readers and writer and you can copy the code out of the zip readers and writers.