Questions tagged [sharpziplib]

#ziplib (SharpZipLib) is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.

The #ziplib (SharpZipLib) is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform. It is implemented as an assembly (installable in the GAC), and thus can easily be incorporated into other projects (in any .NET language). The creator of #ziplib put it this way: "I've ported the zip library over to C# because I needed gzip/zip compression and I didn't want to use libzip.dll or something like this. I want all in pure C#."

Reference: http://www.icsharpcode.net/opensource/sharpziplib/

Installation

SharpZipLib can most easily be installed through its NuGet package.

Install-Package SharpZipLib
272 questions
-4
votes
1 answer

How do you write a ZipFile to disk using SharpZipLib

How do you write a ZipFile to disk using SharpZipLib? Do you have to open an output stream to write a ZipFile to disk? Is there some way to just get the ZipFile bytes and do File.WriteAllBytes()? Note: My question is not about compression. Just…
ina
  • 19,167
  • 39
  • 122
  • 201
-5
votes
1 answer

C#: Large File Compression

we have large files with the size ranging from 800 MB to 900 MB. Currently i am using SharpZipLib Library which takes more time to compress and has very less compression ratio. Please Suggest me some of the libraries which will support high…
sampat nayak
  • 123
  • 2
  • 12
1 2 3
18
19