楼主转载,因为没时间出教程, 所以转载篇先,此代码楼主未测试
[C#] 纯文本查看 复制代码 using System;
using System.Diagnostics;
namespace Tool
{
public class CMDHelper
{
public static string[] ExeCommand(string commandText)
{
Process p = new Process();
p.StartInfo.FileName = Environment.GetEnvironmentVariable("ComSpec");
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(commandText);
p.StandardInput.WriteLine("exit");
p.WaitForExit();
string strOutput = p.StandardOutput.ReadToEnd();
string strError = p.StandardError.ReadToEnd();//无错误则返回空字符串
p.Close();
return new string[] { strOutput, strError };
}
}
}
|