Hi guys,
How to unzip folder in c# programatically.
Thanks in advance.
What do you mean?
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
}
}
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.