0

does .net libraries give support for .zip uncompress operation?

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
maztt
  • 12,278
  • 21
  • 78
  • 153
  • See [Unzip files programmatically in .net](http://stackoverflow.com/questions/836736/unzip-files-programmatically-in-net), [.NET Library to unzip ZIP and RAR files](http://stackoverflow.com/questions/11737/net-library-to-unzip-zip-and-rar-files), [ recommend a library/API to unzip file in C#](http://stackoverflow.com/questions/1023476/recommend-a-library-api-to-unzip-file-in-c), and more. – Matthew Flaschen Jul 05 '10 at 11:58

1 Answers1

1

You can handle zip streams through GZipStream and DeflateStream but for compressing and uncompressing multiple files you may take a look at SharpZipLib.

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928