Skip to content

Instantly share code, notes, and snippets.

@kosinix
Created September 4, 2014 05:49
Show Gist options
  • Select an option

  • Save kosinix/993b09fbb3389e44391b to your computer and use it in GitHub Desktop.

Select an option

Save kosinix/993b09fbb3389e44391b to your computer and use it in GitHub Desktop.
C# - Delete a folder in a zip using dotnetzip. Docs: http://dotnetzip.herobo.com/DNZHelp/Index.html
using (ZipFile zip = ZipFile.Read(@"D:\path\to\ZipFile.zip"))
{
zip.RemoveSelectedEntries("foldername/*"); // Remove folder and all its contents
zip.Save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment