-
Notifications
You must be signed in to change notification settings - Fork 996
FastZip
JohnReilly edited this page Jul 1, 2010
·
14 revisions
FastZip fastZip = new FastZip();
bool recurse = true; // Include all files by recursing through the directory structure
string filter = null; // Dont filter any files at all
fastZip.CreateZip("fileName.zip", @"C:\SourceDirectory", recurse, filter);