在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、可能是参数不是绝对路径 2、如果要启动的程序为单独一个exe文件没有问题,而当这个程序有配置文件,或在启动时需要读取其他文件时,请配置一下 StartInfo 的 WorkingDirectory 属性为你的应用程序目录。
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = @"C:\myprogram\aaa.exe" ;
psi.UseShellExecute = false ;
psi.WorkingDirectory = @"C:\myprogram" ;
psi.CreateNoWindow = true ;
Process.Start(psi);
可能是直接双击exe程序与用Process.Start()来启动程序有些区别吧!
上述代码来自于http://bbs.csdn.net/topics/350254103?page=1#post-394632610
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论