Microsoft.Office.Interop.Word.Application wdApp = (Microsoft.Office.Interop.Word.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application"); Microsoft.Office.Interop.Word.Documents oDocs = wdApp.Documents; Debug.WriteLine("当前的Word实例共打开" + oDocs.Count + "个文档:"); foreach (Microsoft.Office.Interop.Word.Document oDoc in oDocs) { Debug.WriteLine(oDoc.FullName); }