我使用以下代码转换" doc"用于转换文件流的对象。 而不是将doc对象保存在物理路径上,是否可以转换内存对象" doc"到文件流对象?
Application word = new Application();
doc = new Document();
doc = word.Documents.Open(destFile);
doc.Activate();
Set_Document_Bookmarks_Values();
doc.SaveAs2(destFile);
doc.Close();
word.Quit();
FileStream fs = new FileStream(destFile, FileMode.Open, FileAccess.Read);
byte[] data = new byte[fs.Length];
fs.Read(data, 0, data.Length);
fs.Close();