Skip to content

Instantly share code, notes, and snippets.

@jackinf
Created April 16, 2015 14:44
Show Gist options
  • Save jackinf/7dde1c1d53efddcc9252 to your computer and use it in GitHub Desktop.
Save jackinf/7dde1c1d53efddcc9252 to your computer and use it in GitHub Desktop.
[C#] ZipFile operations
using (ZipFile zipDest = ZipFile.Read(bdocPath))
{
zipDest.AddFiles(files, false, string.Empty);
zipDest.Save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment