我正在使用 SharpZipLib,我需要压缩一个现有文件夹,其中有文件。
示例: 我需要压缩“Folder2”
C:\文件夹1\文件夹2
Folder2 有两个文件 a.txt 和 b.txt
我当前的代码使用“FastZip”
FastZip fastzip = new FastZip();
Boolean recurse = true;
String filter = null;
fastzip.CreateZip(folderName, @"\" + folderName, recurse, filter);
我收到以下错误:
拒绝访问路径 C:\Folder1\Folder2。
SharZipLib 上有专家吗?:)