How to get Progress of Zipping and Unzipping a folder ?
See original GitHub issueJust found this amaaaazziiing library !!! 🥇
I have a question thought 👍
ZipUtil.pack(new File("/tmp/demo"), new File("/tmp/demo.zip"));
Let’s say i am packing a directory to a zip folder … how i can get the progress of packing , i mean let’s say it is 1 GB it will take some time to zip right ? I want the user to get notified about the progress …
So let’s say are there any listeners on the library so i can have a local variable holding the progress ?
Same for the unzipping 😃
THANK YOUUUU SOOOO MUCH!!!
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
How to show unzip progress? - Ask Ubuntu
Save this answer. Another alternative to show the zip/unzip progress is to use the program 7zip. In the latest version 16.02 (published 2016-05 ......
Read more >When I use zip, how can I display the overall progress without ...
The total size of lines to expect is gathered by recursively listing (ls) the [folder_to_zip] and counting the lines starting with '-' or...
Read more >Zip and unzip files and folders on Mac - Apple Support
Unzip (expand) a compressed item: Double-click the .zip file. The unzipped item appears in the same folder as the .zip file. If you...
Read more >How To Unzip A File - YouTube
00:00 Intro00:19 Unzip a folder on Windows 1001:21 Unzip folders on Mac01:55 Zip files on Windows 1002:22 Zip files on MacIn this video ......
Read more >How do I show progress bar while unzipping a folder in C# ...
For my C# console application that is unzipping and relocating a folder, I am using the ExtractToDirectory function from ZipFile class to ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
We never implemented a progress bar for zt-zip. The closest to this is a example project at https://github.com/toomasr/zt-zip-progress-bar which shows an approach to implementing one.
Another approach is somewhat documented at https://github.com/zeroturnaround/zt-zip/issues/26
Ok, will do!