2

现在让我们认为我们有一个随机的 zip 文件,那么我怎么知道该文件受密码保护?因为没有像这样的方法

bool IsPasswordProtected(string fileName);

我问这个原因有几种方法可以从 zip 文件中提取条目,但我仍然必须使用 Extract() 或 ExtractWithPassword() 但要使用它,我必须知道我要提取的文件实际上是密码保护与否。我知道密码适用于条目而不是 zip 文件本身。我检查了文档中的所有方法,但找不到合适的方法来解决这个问题,或者我错过了什么?

谢谢。!

4

4 回答 4

4

检查ZipEntry.UsesEncryption物业。

于 2011-12-31T08:51:08.283 回答
1

我会尝试该ZipEntry.Extract方法,如果由于缺少密码而失败,您将收到异常,然后尝试该方法ExtractWithPassword并查看是否有效。如果它不起作用,则失败并出现原始异常。不幸的是,该Password属性是只写的。

根据文档ZipEntry.UsesEntryption是不一样的需要密码。

于 2011-12-31T08:58:22.600 回答
0
ZipFile zip = ZipFile.Read(zipFileName);

         if (!password.Equals("")) 
         { 
             zip.Password = password; 
         }

         try 
         {
             if (Directory.Exists(outputDirectory)) 
             { 
                 Directory.Delete(outputDirectory); 
             }

             Directory.CreateDirectory(outputDirectory);
             zip.ExtractAll(outputDirectory);
             System.Windows.Forms.MessageBox.Show("Unzip process is complete.", "Information");
         }
         catch (BadPasswordException e) 
         {
             string value = "Type password for unzip";
             if (InputBox("Zip file was password protected.", "Password : ",ref value ) == System.Windows.Forms.DialogResult.OK) 
             {
                 ExtractFileToDirectory(filename, outputpath,value);
             }
         }    

InputBox 方法如下...

public DialogResult InputBox(string title, string promptText, ref string value)
    {
        Form form = new Form();
        System.Windows.Forms.Label label = new System.Windows.Forms.Label();
        System.Windows.Forms.TextBox textBox = new System.Windows.Forms.TextBox();
        System.Windows.Forms.Button buttonOk = new System.Windows.Forms.Button();
        System.Windows.Forms.Button buttonCancel = new System.Windows.Forms.Button();

        form.Text = title;
        label.Text = promptText;
        textBox.Text = value;

        buttonOk.Text = "OK";
        buttonCancel.Text = "Cancel";
        buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
        buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;

        label.SetBounds(9, 20, 372, 13);
        textBox.SetBounds(12, 36, 372, 20);
        buttonOk.SetBounds(228, 72, 75, 23);
        buttonCancel.SetBounds(309, 72, 75, 23);

        label.AutoSize = true;
        textBox.Anchor = textBox.Anchor | AnchorStyles.Right;
        buttonOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
        buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

        form.ClientSize = new System.Drawing.Size(396, 107);
        form.Controls.AddRange(new System.Windows.Forms.Control[] { label, textBox, buttonOk, buttonCancel });
        form.ClientSize = new System.Drawing.Size(Math.Max(300, label.Right + 10), form.ClientSize.Height);
        form.FormBorderStyle = FormBorderStyle.FixedDialog;
        form.StartPosition = FormStartPosition.CenterScreen;
        form.MinimizeBox = false;
        form.MaximizeBox = false;
        form.AcceptButton = buttonOk;
        form.CancelButton = buttonCancel;

        DialogResult dialogResult = form.ShowDialog();
        value = textBox.Text;
        return dialogResult;
    }    

当 zip 文件有密码时,该代码很有用。如果 zip 文件有密码,则会出现输入文本对话框并要求提取密码。请注意(outputDirectory 是用于提取 zip 文件位置的字符串)。我认为该代码对您非常有用。

于 2012-07-20T10:51:59.480 回答
0

我也有同样的问题。我尝试了弗朗西斯厄普顿的代码。它没有用。你可以试试

ZipFile.CheckZipPassword(TemporaryFilePath, PassWord);

使密码为空;就像...

bool ExistPassWord = ZipFile.CheckZipPassword(TemporaryFilePath, null);
于 2018-09-10T06:39:55.590 回答