C library to read from zip archives
Posted
by Ariel
on Stack Overflow
See other posts from Stack Overflow
or by Ariel
Published on 2010-05-29T07:55:01Z
Indexed on
2010/05/29
8:02 UTC
Read the original article
Hit count: 162
Is there a portable C library to access .zip archives? "gzip" or "zlib" (the closest I could find) only handle compressed data, I need to be able to list the files inside the archive, and access each one individually, and if they're compressed using the 'deflate' method, I can use zlib on it.
© Stack Overflow or respective owner