在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();

这样就可以顺利调用了。


snowell
365 声望11 粉丝

全栈,跨平台