使用ZipFile压缩文件时出错

本文关键字:出错 文件 压缩 ZipFile 使用 | 更新日期: 2023-09-27 18:22:28

我使用的是Windows窗体应用程序。在我的应用程序中,我使用FolderBrowserDialogtextbox1和两个按钮。在我的文本框中,我正在传递文件夹。它将从文件夹中选择特定的文件类型。在得到这样的文件类型后,我需要使用ZipFile(即Iconic.zip)进行转换。在检索到特定的文件类型之后,它显示了FileNotfound的错误。出于测试目的,我尝试将检索到的文件显示到列表框中,它运行良好。但当我通过ZipFile打电话时,它给了我错误,不知道是什么错误。

namespace WinDataStore
{
    public partial class Form1 : Form
    {

        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {            
            FolderBrowserDialog folderBrowserDlg = new FolderBrowserDialog();
            folderBrowserDlg.ShowNewFolderButton = true;         
            DialogResult dlgResult = folderBrowserDlg.ShowDialog();
            if (dlgResult.Equals(DialogResult.OK))
            {                
                textBox1.Text = folderBrowserDlg.SelectedPath;              
               Environment.SpecialFolder rootFolder = folderBrowserDlg.RootFolder;
            }
        }
        private void Form1_Load(object sender, EventArgs e)
        {
        }
        private void button2_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(textBox1.Text))
            {
                //notification to user
                return;
            }
            string[] extensions = { ".xml",".ddg" };
            string[] dizin = Directory.GetFiles(textBox1.Text, "*.*",SearchOption.AllDirectories)
                .Where(f => extensions.Contains(new FileInfo(f).Extension.ToLower())).ToArray();
          //  listBox1.Items.AddRange(dizin);
            using (ZipFile zip = new ZipFile())
            {
                zip.AddFile("dizin", "files");
                zip.Save("z.zip");
            }        

        }
    }
}

使用ZipFile压缩文件时出错

不能像下面这样将变量作为字符串传递:

string[] dizin = ...;
zip.AddFile("dizin", "files");

相反,这样使用它:

zip.AddFile(dizin, "files");

或者更有可能你需要循环:

foreach(var file in dizin)
{
    zip.AddFile(file, "files");
}

或者,如果您使用Ionic Zip Library,请使用AddFiles方法:

zip.AddFiles(dizin, "files");

下面的代码解决了我的问题使用(ZipFile zip=新ZipFile()){foreach(dizin中的var文件){拉链AddFile(文件);}拉链保存("z.zip");}