Reputation: 605
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?
Upvotes: 3
Views: 449
Reputation: 101192
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
Upvotes: 1
Reputation: 8943
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
Upvotes: 4
Reputation: 8414
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.
Upvotes: 2
Reputation: 15794
LZMA SDK (7-Zip format) - one of the more efficient algorithms out there.
Upvotes: 1