如何在C#代码中调用exe执行文件
答案:3 悬赏:80 手机版
解决时间 2021-03-31 08:09
- 提问者网友:黑米和小志
- 2021-03-30 21:13
如何在C#代码中调用exe执行文件
最佳答案
- 五星知识达人网友:何以畏孤独
- 2021-03-30 22:02
using System.Diagnostics;Process.Start("nodepad.exe"); // 把nodepad.exe换成要调用的exe执行文件完成路径
全部回答
- 1楼网友:轮獄道
- 2021-03-30 23:37
public static void StartProcessNoWait(string exe)
{
try
{
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo(exe);
info.UseShellExecute = false;
info.WorkingDirectory = System.IO.Path.GetDirectoryName(exe);
System.Diagnostics.Process pro = System.Diagnostics.Process.Start(info);
pro.Close();
pro = null;
}
catch (Exception ex)
{
throw ex;
}
}
{
try
{
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo(exe);
info.UseShellExecute = false;
info.WorkingDirectory = System.IO.Path.GetDirectoryName(exe);
System.Diagnostics.Process pro = System.Diagnostics.Process.Start(info);
pro.Close();
pro = null;
}
catch (Exception ex)
{
throw ex;
}
}
- 2楼网友:轮獄道
- 2021-03-30 23:18
System.Diagnostics.Process.Start("文件名");
//如打开计算器System.Diagnostics.Process.Start("calc");
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯