日期:2014-05-17 浏览次数:20998 次
public void ExecuteDOS(string command, int seconds)
{
//string output = ""; // 输出字符串
if (command!=null&&!command.Equals(""))
{
Process process = new Process(); //创建进程对象
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/C "+command;
//startInfo.Arguments = "/x " + command;
startInfo.UseShellExecute = false; // 不使用系统外壳true,false
startInfo.RedirectStandardInput = false; //不重定向输入false
startInfo.RedirectStandardOutput = true; // false true//重定向输出
startInfo.CreateNoWindow = true;//false;true //不创建窗口
process.StartInfo = startInfo;
try
{
/*
* 同步掉用
if (process.Start()) // 开始进程
{
if (seconds == 0)
{
process.WaitForExit(); //这里无限等待进程结束
&