在 C# 中编辑 Microsoft Word但是,会弹出一个 Word 窗口,有人正在编辑它

问题描述

我正在尝试使用 Microsoft.Office.Interop.Word API 编辑 word 文件(序列:创建一个没有任何内容的 .docx 文件(流)=> 使用 API 编辑=> 保存)但是当程序运行时,一个word 窗口弹出,这个窗口出现。说“(用户)正在编辑并被锁定。”我应该怎么办? (当我关闭单词窗口或单击“只读”按钮时出现错误。(我有一个办公室帐户))

代码

            string NewFile = rootPath + filename;
            if (!File.Exists(NewFile)) 
            {
                FileStream stream = File.Create(NewFile);
                stream.Close();
            }
            object end_of_doc = "\\endofdoc";
            Word.Application writing = new Word.Application();
            object fileName = rootPath + filename;
            Word.Document doc = writing.Documents.Open(ref fileName);
            //.........(Lots of codes)
            doc.SaveAs2(ref fileName);

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)