Top "Dotnetzip" questions

Questions dealing with the DotNetZip open-source zip library for .NET

DotNetZip Save location

Moin! using (ZipFile zip = new ZipFile()) { // add this map file into the "images" directory in the zip archive zip.AddFile("…

c# zip dotnetzip
unzip password protected file

how to unzip a password protected file using dotnetzip or sharpziplib (if the password is not known).

c# asp.net dotnetzip
How can I delete a directory in a Zip file using .NET?

How would I delete a directory in a .zip and all the files in it (preferably using DotNetZip)? Right now …

c# dotnetzip
Why can't Windows 7 extract files from my password protected zip-file created using DotNetZip?

I'm creating a password protected zip-file using DotNetZip. When I try to extract the files I'm met with an "unspecified …

c# .net dotnetzip
Compression issue with large archive of files in DotNetZip

Greetings.... I am writing a backup program in c# 3.5, using hte latest DotNetZip. The basics of the program is to …

c# compression zip dotnetzip
DotNetZip: Convert ZipFile to byte[] array

I'm using DotNetZip to add a file to a zip archive, which I've read from the file system. I'd like …

c# byte dotnetzip
How to handle unzipping ZipFile with paths that are too long/duplicate

When unzipping files in Windows, I'll occasionally have problems with paths that are too long for Windows (but okay in …

c# zipfile dotnetzip
How can I optimize or limit the CPU usage a zip process (DotNetZip) in c#?

Good day guys I have an app that I use to archive a folder using the DotNetZip library. I notice …

c# cpu-usage dotnetzip
C# : How to report progress while creating a zip file?

Update: Got it working updated my working code Here is what I have so far private async void ZipIt(string …

c# wpf progress-bar dotnetzip
Getting a "Cannot Read That as a Zip File" Exception while trying to get a stream from an Inner Zip File (a Zip within another Zip)

In C#, I'm using the DotNetZip I have a zip called "innerZip.zip" which contains some data, and another zip …

c# dotnetzip