Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C

LiteZip and LiteUnzip

Rate me:
Please Sign up or sign in to vote.
4.82/5 (54 votes)
7 Aug 2008LGPL312 min read 466.6K   6K   153  
Easy to use, small-footprint DLLs to let your app create zip archives, and extract the contents of them. Useful for C, C++, VB, and other languages. Works for Win32 and Linux
This directory contains a very simple C console application
that uses the LITEZIP.DLL to zip some memory buffer into a
ZIP archive in memory, and then write the resulting archive
to disk. The archive is zipped using one of the raw ZipAddXXX
APIs (ie, here, that's ZipAddBufferRaw), so it doesn't have
a ZIP header on it. In order to unzip later, we'll also have
to use one of LiteUnzip's raw ZipOpenXXX APIs.

For Linux, run the "makefile" with GNU's make. For Windows, open
the ZipMemoryRaw.mdp Visual Studio Workspace.

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions