fastzip

Does ICSharpCode.SharpZipLib's FastZip supports setting compression level?

It seems fast, what could be its compression level? Can it be changed? I'm using FastZip so I can show a progressbar. I tried Peter Bromberg's sample code first, setting the compression level is possible, but don't have a sample code for progress event ...

Using FastZip to Zip a Directory, and Only Include Certain File Types ( File filtering)

I wonder whether there is a way to use fastzip to zip a directory, but include only certain file types. I am thinking about using something like: public static void ZipFiles(string DirectoryToZip, string ZipedFile, string fileFilter, string folderFilter) { FastZip fz = new FastZip(); fz.CreateEmptyDirectories = true; fz.CreateZip...