ZLib To Extract A Zip

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


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
Topic archived. No new replies allowed.