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.
code4life
2010-07-13 04:51:24
+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
2010-07-13 04:51:45
+4
A:
QuickLZ claims to be the fastest in the world.
How about System.IO.Packaging?
http://msdn.microsoft.com/en-us/library/system.io.packaging.aspx
Justin
2010-07-13 04:53:12
That's a good one! I've never used Packaging before!
Aaronontheweb
2010-07-13 04:58:29
+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
2010-07-13 05:11:49