string
tempPath
=
System.Environment.GetEnvironmentVariable(
"
TEMP
"
);
string fileName = Path.Combine ( tempPath, " 推理01.doc " );
string winwordPath = "" ;
// 判断系统中是否已经有 Word 实例在运行。
Process[] wordProcesses = Process.GetProcessesByName( " winword " );
foreach ( Process process in wordProcesses)
{
Debug.WriteLine( process.MainWindowTitle );
winwordPath = process.MainModule.FileName; // 如果有的话获得 Winword.exe 的完全限定名称。
break;
}
Process wordProcess = new Process();
if ( winwordPath.Length > 0 ) // 如果有 Word 实例在运行,使用 /w 参数来强制启动新实例,并将文件名作为参数传递。
{
wordProcess.StartInfo.FileName = winwordPath;
wordProcess.StartInfo.UseShellExecute = false;
wordProcess.StartInfo.Arguments = fileName + " /w";
}
else // 如果没有 Word 实例在运行,还是
{
wordProcess.StartInfo.FileName = fileName;
wordProcess.StartInfo.UseShellExecute = true;
}
wordProcess.Start();
wordProcess.WaitForExit(); // 当前进程一直在等待,直到该 Word 实例退出。
wordProcess.Close();
string fileName = Path.Combine ( tempPath, " 推理01.doc " );
string winwordPath = "" ;
// 判断系统中是否已经有 Word 实例在运行。
Process[] wordProcesses = Process.GetProcessesByName( " winword " );
foreach ( Process process in wordProcesses)
{
Debug.WriteLine( process.MainWindowTitle );
winwordPath = process.MainModule.FileName; // 如果有的话获得 Winword.exe 的完全限定名称。
break;
}
Process wordProcess = new Process();
if ( winwordPath.Length > 0 ) // 如果有 Word 实例在运行,使用 /w 参数来强制启动新实例,并将文件名作为参数传递。
{
wordProcess.StartInfo.FileName = winwordPath;
wordProcess.StartInfo.UseShellExecute = false;
wordProcess.StartInfo.Arguments = fileName + " /w";
}
else // 如果没有 Word 实例在运行,还是
{
wordProcess.StartInfo.FileName = fileName;
wordProcess.StartInfo.UseShellExecute = true;
}
wordProcess.Start();
wordProcess.WaitForExit(); // 当前进程一直在等待,直到该 Word 实例退出。
wordProcess.Close();