c# 调用外部exe程序

c#调用外部exe程序,首先要
using System.Diagnostics;

然后开启一个新process
System.Diagnostics.ProcessStartInfo p=null;
System.Diagnostics.Process Proc;

p = new ProcessStartInfo("nnnn.exe","参数");
p.WorkingDirectory = exepath;//设置此外部程序所在windows目录
p.WindowStyle = ProcessWindowStyle.Hidden;//在调用外部exe程序的时候,控制台窗口不弹出
//如果想获得当前路径为
//string path = System.AppDomain.CurrentDomain.BaseDirectory;

Proc = System.Diagnostics.Process.Start(p);//调用外部程序

可以利用Proc.HasExited为true or false来判断外部程序是否还在运行。

上一篇:CheeseZH: Stanford University: Machine Learning Ex4:Training Neural Network(Backpropagation Algorithm)


下一篇:Spring面向切面编程(AOP)