当我尝试打开 Visio 文档并将其另存为 pdf 时出现此错误:
protected void ViewVisio(string url)
{
string pdfFile = Server.MapPath("/Files/test.pdf");
Microsoft.Office.Interop.Visio.Application visApp =
new Microsoft.Office.Interop.Visio.Application();
Microsoft.Office.Interop.Visio.Document visDoc =
visApp.Documents.Open(url.ToString()); // error occurs here
visDoc.ExportAsFixedFormat(
Microsoft.Office.Interop.Visio.VisFixedFormatTypes.visFixedFormatPDF,
pdfFile,
Microsoft.Office.Interop.Visio.VisDocExIntent.visDocExIntentScreen,
Microsoft.Office.Interop.Visio.VisPrintOutRange.visPrintAll, 1, -1,
false, true, true, true, false, System.Reflection.Missing.Value);
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
Response.ContentType = "application/pdf";
Response.TransmitFile(pdfFile);
Response.Flush();
Response.End();
}
这是我得到的错误:
System.Runtime.InteropServices.COMException:存在文件共享冲突。无法按请求访问该文件。
堆栈跟踪:
堆栈跟踪:
[COMException(0x86db097e):
存在文件共享冲突。无法按要求访问该文件。]
Microsoft.Office.Interop.Visio.DocumentsClass.Open(字符串文件名)+0
...
有谁知道这个问题是什么?我找不到它的任何细节。