Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a zip library for c# that is faster than DotNetZip [closed]

I m currently using Ionic zip library. I was curious if there s a faster one than this?

As long as it has a faster compression algorithm, i dont care what it uses.

like image 354
DarthVader Avatar asked Mar 22 '11 00:03

DarthVader


2 Answers

Have you maybe tried ZipPackage?

Without knowing what exactly faster means (compressing large files? batches of bunches of files? complex directory structure?) it's hard to answer.

like image 71
48klocs Avatar answered Sep 30 '22 22:09

48klocs


I haven't done any speed comparisons but I've always preferred SharpZipLib. And of course it'll allow you to specify your compression level. A lower compression level will be faster.

like image 38
Steve Wortham Avatar answered Sep 30 '22 23:09

Steve Wortham