如何解决不能使用Process的Start方法运行一个程序的问题。

牛嘉谊
2023-12-01

在Windows开发,有时候需要调起另外一个可执行文件,正常来说会这么写:

Process proc = new Process();
string MainAppPath = "test.exe";//the path of the exe file
proc.StartInfo.FileName = MainAppPath;
proc.Start();

但是有时候调用不起来。其实我们还需要一句,来获取test.exe的工作路径:

Process proc = new Process();
string MainAppPath = "test.exe";//the path of the exe file
proc.StartInfo.FileName = MainAppPath;
proc.StartInfo.WorkingDirectory = Path.GetDirectoryName(MainAppPath);;
proc.Start();

这样就可以顺利调用了。

 类似资料: