0

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

Darin Dimitrov
  • 994,864
  • 265
  • 3,241
  • 2,902
maztt
  • 12,167
  • 19
  • 75
  • 149
  • 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
  • 994,864
  • 265
  • 3,241
  • 2,902