Hi guys,
How to unzip folder in c# programatically.

Thanks in advance.

Recommended Answers

All 4 Replies

What do you mean?

Maybe this is useful for you

He probably means to show him the entire C# code(do his work for him) for this particular program

 using (ZipFile zip = ZipFile.Read(ExistingZipFile))  
  {  
    foreach (ZipEntry e in zip)  
    {  
      e.Extract(TargetDirectory, true);  // overwrite == true  
    }  
  }  

OnlineHelp

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.