1

我正在尝试做的事情是运行 word 文档的文件夹,并使用 word 中的 tiff 打印机将它们转换为 .tif 文件。问题是,如果我遇到一个带有密码的文档,它应该跳过该文档而不提示输入密码,它应该都保留在后台。

我可以看到 Document 类有一个 HasPassword 属性,但是在打开文档之前无法检查它。

word.Documents.OpenNoRepairDialog(@"c:\testfolder\testDocWithPw.docx", ReadOnly: true);

我还尝试给密码一个 emtpy 参数,并尝试捕获错误代码。但我必须按取消提示要求输入密码才能到达那里。

Application word = new Application();
word.DisplayAlerts = WdAlertLevel.wdAlertsNone;
try
{
    word.Documents.OpenNoRepairDialog(@"c:\testfolder\Doc2.docx", ReadOnly: true, PasswordDocument: "");
    word.ActivePrinter = "TIFF Image Printer 10.0";
    Doc.PrintOut(); //printout untested for now
    Doc.Close(false);
}
catch (System.Runtime.InteropServices.COMException ex)
{
    if (ex.ErrorCode == 0x12345678)
    {
        //skip file and log file name and position for review
    }
}

提前谢谢

编辑:刚刚尝试用错误的密码输入密码,我可以使用错误代码部分,最好的部分是,当没有密码时,即使你给它一个密码,它也会打开文件。所以它基本上做我想要的。在更糟糕的情况下,如果我不应该打开一个我不应该打开的文档上的某个人的密码,我可以检查 hasPassword 属性,如果我不应该访问密码错误的文档。

4

2 回答 2

5

我自己回答这个问题,所以我没有悬而未决的问题。解决方法很简单,打开的时候给个密码就行了,如果留空字符串,和不提问一样。然后可以捕获一个 com 异常并且可以按照我的意愿处理它。

Application word = new Application();
word.DisplayAlerts = WdAlertLevel.wdAlertsNone;
try
{
    word.Documents.OpenNoRepairDialog(@"c:\testfolder\Doc2.docx", ReadOnly: true, PasswordDocument: "RandomButSurelyNotRightPassword");
    word.ActivePrinter = "TIFF Image Printer 10.0";
    Doc.PrintOut(); //printout untested for now
    Doc.Close(false);
}
catch (System.Runtime.InteropServices.COMException ex)
{
    if (ex.ErrorCode == 0x12345678)
    {
        //skip file and log file name and position for review
    }
}
于 2012-12-11T15:44:57.587 回答
0

当我第一次尝试时

word.Documents.OpenNoRepairDialog(@"c:\testfolder\Doc2.docx", ReadOnly: true, PasswordDocument: "RandomButSurelyNotRightPassword");

当我打开一个没有密码的单词时,提示不成功。然后我发现

"RandomButSurelyNotRightPassword"

作为占位符密码太长...

于 2018-01-12T02:45:54.037 回答