vote up 5 vote down star
2

Hey guys,

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.

flag

5 Answers

vote up 7 vote down check

Perhaps libtar? Also under a BSD license.

link|flag
It looks like libtar is a good solution for this project. Thanks everyone for your speedy replies. – Justin Aug 3 at 20:46
vote up 3 vote down

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

link|flag
vote up 2 vote down

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

link|flag
vote up 9 vote down

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|flag
7Zip also has decent support for AES encryption. – Marsh Ray Aug 4 at 1:04
Personally, I'm a fan of 7Zip, but the LGPL might cause problems in this situation. – Justin Aug 4 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 at 13:45
vote up 1 vote down

Also have a look at bzip2.

link|flag
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 at 16:32

Your Answer

Get an OpenID
or

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