up vote 6 down vote favorite
2
share [g+] share [fb]

I'm working on a commercial project that requires a couple of files to be bundled (packed) into an archive and then compressed. Right now we have zlib in our utility library, but it doesn't look like zlib has the functionality to compress multiple files into one archive. Anyone know of free libraries I'd be able to use for this?

TIA.

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

Perhaps libtar? Also under a BSD license.

link|improve this answer
It looks like libtar is a good solution for this project. Thanks everyone for your speedy replies. – Justin Aug 3 '09 at 20:46
feedback

7Zip has a full SDK for several languages including C and C++. The compression is extremely good, albeit not very fast. The code is licensed under the LGPL.

link|improve this answer
7Zip also has decent support for AES encryption. – Marsh Ray Aug 4 '09 at 1:04
1  
Personally, I'm a fan of 7Zip, but the LGPL might cause problems in this situation. – Justin Aug 4 '09 at 13:32
The LZMA SDK portion of 7-Zip is in the public domain, so no LGPL concerns apply. If you want all of 7-Zip's features (not just LZMA), then 7-Zip itself is under the LGPL, but this isn't a problem for commercial apps as long as you leave it in a DLL, include a copy of the LGPL in your distribution, and provide source upon request. – Josh Kelley Aug 4 '09 at 13:45
feedback

You could use libzip - it's under a BSD-like licence so it should be usable in a commercial project.

link|improve this answer
feedback

To compress multiple files into one zip archive you could use Zipios++

link|improve this answer
feedback

Also have a look at bzip2.

link|improve this answer
bzip2 cannot compress multiple files into an archive. You typically use tar to join all your files into one before giving it to bzip. – Andrew Bainbridge Aug 13 '09 at 16:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.