使用c#将现有Docx保存为XML

时间:2016-03-18 06:20:15

标签: c# office-interop

我有一个现有的word文档(Office 2010),并希望以编程方式另存为XML。我被试了

   Microsoft.Office.Interop.Word.Application.Documents.Open(@"C:\Test\NewDocument.docx");

但它不正确。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

var myfile= @"C:\Test\NewDocument.docx"; 
var fileInfo = new FileInfo(myfile); 
fileInfo.MoveTo(Path.ChangeExtension(myfile, ".xml"));