tags:

views:

53

answers:

3
+1  Q: 

Access zip files

How can I access to the contents of a zip file?

I'm trying write a program in C and I want use the libraries used by zip.

+3  A: 

The Info-zip project has code for that.

Jerry Coffin
+3  A: 

You may want to check the open source widely used library ZLIB. The link provides sample code and the home page provides more information about the libraries, source code, installation and usage.

Praveen S
+1  A: 

Minizip, which is included with zlib is what you need. Look in the 'contribs' directory for the code. There is an example for zip/unzip and is easily included in a project.

DrTwox