您的位置:首页 > 编程语言 > C#

c#调用CMD执行程序

2017-10-20 09:21 736 查看

c#调用CMD执行程序

string str = @"cd c:\temp";//运行程序路径
string str2 = "echo y>c.txt ";
string str3 = "abaqus job=footbridge2017-10-11-2 int <c.txt ";//询问是否覆盖时自动输入y

System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;    //是否使用操作系统shell启动
p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息
p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
p.StartInfo.RedirectStandardError = true;//重定向标准错误输出
p.StartInfo.CreateNoWindow = true;//不显示程序窗口
p.Start();//启动程序

//向cmd窗口发送输入信息
p.StandardInput.WriteLine(str);
p.StandardInput.WriteLine(str2);
p.StandardInput.WriteLine(str3);
p.StandardInput.WriteLine("exit");

p.StandardInput.AutoFlush = true;
//p.StandardInput.WriteLine("exit");
//向标准输入写入要执行的命令。这里使用&是批处理命令的符号,表示前面一个命令不管是否执行成功都执行后面(exit)命令,如果不执行exit命令,后面调用ReadToEnd()方法会假死
//同类的符号还有&&和||前者表示必须前一个命令执行成功才会执行后面的命令,后者表示必须前一个命令执行失败才会执行后面的命令

//获取cmd窗口的输出信息
string output = p.StandardOutput.ReadToEnd();
txt.Text = output;
p.WaitForExit();//等待程序执行完退出进程
p.Close();
Console.WriteLine(output);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c# cmd