cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
ZLib To Extract A Zip
ZLib To Extract A Zip
Mar 13, 2019 at 4:45am UTC
leemr
(1)
I am learning C++ and want to use zlib to extract a .zip file. I am lost on how to do this and would love it if someone could provide some guidance for me :)
http://www.cplusplus.com
Mar 13, 2019 at 6:25am UTC
mbozzi
(3932)
zlib by itself does not support
.zip
files. However, Gilles Vollant has apparently written an unofficial extension to zlib called
minizip
which does what you want:
https://www.zlib.net/zlib_faq.html#faq11
http://www.winimage.com/zLibDll/minizip.html
The documentation (and some examples) can supposedly be found in the source code.
Last edited on
Mar 13, 2019 at 6:26am UTC
Topic archived. No new replies allowed.