Created
April 16, 2015 14:44
-
-
Save jackinf/7dde1c1d53efddcc9252 to your computer and use it in GitHub Desktop.
[C#] ZipFile operations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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