C# 如何启动相对路径下外部程序
System.Diagnostics.ProcessStartInfoInfo=newSystem.Diagnostics.ProcessStartInfo();Info...
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();
Info.FileName = "setup.exe";
Info.WorkingDirectory = "F:\\000";
现在是绝对路径,我想要相对路径 展开
Info.FileName = "setup.exe";
Info.WorkingDirectory = "F:\\000";
现在是绝对路径,我想要相对路径 展开
展开全部
c#获取你的进程所在的完整路径,再根据外部程序相对你的程序的路径进行计算即可!
追问
比如我要运行原程序同路径下的setup.exe,具体代码怎么写呢?
追答
string rootfilePath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
int iIndex = rootfilePath.LastIndexOf("\\");
rootfilePath = rootfilePath.Substring(0, iIndex + 1);
RunProcess runProcess = new RunProcess();
String args = "" ;
runProcess.Run(rootfilePath+"x.exe", args);
如果你的程序运行在win7下,直接 runProcess.Run(".\\x.exe", args)也可以,winxp也可用,但有缺陷,程序中途未访问其它路径后,将找不到此文件;第一种方式比较保险!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询