views:

65

answers:

4

I know about SharpZipLib...but what else is out there? I'd like to make myself a file archiving utility that supports multiple compression formats. Any ideas?

+1  A: 

LZMA SDK (7-Zip format) - one of the more efficient algorithms out there.

http://www.7-zip.org/sdk.html

code4life
+1  A: 

There's the built-in System.IO.Compression library which supports GZip and Deflate. That's not a bad place to start as its documentation is better than most.

Aaronontheweb
+4  A: 

QuickLZ claims to be the fastest in the world.

http://www.quicklz.com/

How about System.IO.Packaging?

http://msdn.microsoft.com/en-us/library/system.io.packaging.aspx

Justin
That's a good one! I've never used Packaging before!
Aaronontheweb
+1  A: 

http://dotnetzip.codeplex.com/ <-- imho easier than sharpziplib

http://sevenzipsharp.codeplex.com/ <-- wrapper around 7zip

http://www.chilkatsoft.com/zip-dotnet.asp <-- not free. bz2, gzip and .z

jgauffin