Stev0
Stev0

Reputation: 605

Compression Assemblies for C#/.Net?

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

Answers (4)

jgauffin
jgauffin

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

Justin
Justin

Reputation: 8943

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

Upvotes: 4

Aaronontheweb
Aaronontheweb

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

code4life
code4life

Reputation: 15794

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

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

Upvotes: 1

Related Questions