0

我想从 zip 文件中添加"test"所有 pdf 文件path

using (var zip = new ZipFile())
                {
                    zip.AddSelectedFiles("*.pdf",path);
                    zip.Save(path+"/test.zip"); 
                }

创建 test.zip 文件时有这个目录:

**test.zip**\Users\administrator\Documents\vs2010\Projects\my project\**pdf files**

如何使所有pdf文档直接在test.zip中

 test.zip\pdf files
4

1 回答 1

3

请尝试以下方法,

 using (ZipFile zip = new ZipFile())
  {
    string[] files = Directory.GetFiles(path);
    // filter the files for *.pdf
    zip.AddFiles(files, "Test"); //Test Folder 
    zip.Save(path+"/test.zip"); 
  }
于 2012-09-26T07:01:18.990 回答