我正在尝试做的事情是运行 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 属性,如果我不应该访问密码错误的文档。