I followed the example below: (https://dotnetzip.codeplex.com)
String[] filenames = { "ReadMe.txt", "c:\\data\\collection.csv", "c:\\reports\\AnnualSummary.pdf"};
using (ZipFile zip = new ZipFile())
{
zip.CompressionLevel = CompressionLevel.None;
zip.AddFiles(filenames, "files");
zip.Save("Archive.zip");
}
But when I add 200 audio files to a zip, it too slow, even copy is faster. How can I add multiple file to zip is faster ? Another solution or work around ?