2

我正在尝试使用. Process.Start当我通过双击启动进程时explorer.exe,它会正确启动;但是,当我尝试使用以下代码片段时:

var programPath = @"C:\Users\user\Documents\Program Directory\program.exe";
if(!File.Exists(programPath))
{
     MessageBox.Show("The program.exe file does not exist! Cannot launch.");
     return;
}
Process.Start(programPath);

我的 WPF 进程在任务管理器中短暂闪烁,然后立即关闭。

4

1 回答 1

8

我这样解决了这个问题:

Process proc = new Process();
proc.StartInfo.FileName = programPath;
proc.StartInfo.WorkingDirectory = Path.GetDirectoryName(programPath);
proc.Start();

诀窍是将工作目录设置为 WPF 应用程序的路径,而不是启动应用程序的工作目录。

于 2013-11-14T05:01:32.243 回答