1

我尝试使用文件过滤器和目录过滤器来选择指定的文件和文件夹,但子文件夹中的文件受文件过滤器的影响。

例子 :

文件过滤器:@"//1.txt$;2.txt$"

目录过滤器:@"//sub$"

只有1.txt&2.txt被压缩在sub文件夹中,我希望文件sub夹中的所有文件都被压缩。

4

1 回答 1

1

I assume that fastzip means the one class of SharpZipLib. According to the documentation https://github.com/icsharpcode/SharpZipLib/wiki/FastZip the parameter for fileFilter is optional. If null is passed, all files in the specified folder should be compressed

于 2018-10-09T08:24:24.537 回答