-3

will u help me to extract a zip file using C#code

RAHUL
  • 127
  • 2
  • 8

1 Answers1

2

DotNetZip is packaged as a single DLL, a single assembly. It is fully managed code, written in C#, and provides support for reading and writing Zip archive files and streams. The main type is ZipFile, featuring methods like Add(), Extract() and Save().

CloudyMarble
  • 36,908
  • 70
  • 97
  • 130
  • Sweet, never knew about it. I like it! – richard Mar 08 '11 at 08:21
  • For this Lib i have written a helper library. It provides a service for creating packages in a fast way. Service source code: https://github.com/nhu/Ostblock/blob/master/src/Ostblock.Ultilitys/Zipping/Services/DotNetZipService.cs You can check out a github: https://github.com/nhu/Ostblock – nhu Mar 08 '11 at 08:31