首页 > 编程 > C# > 正文

C#中执行批处理文件(*.bat)的方法代码

2020-01-24 03:34:43
字体:
来源:转载
供稿:网友

复制代码 代码如下:

static void Main(string[] args)
{
    Process proc = null;
    try
    {               
        string targetDir = string.Format(@"D:/adapters/setup");//this is where mybatch.bat lies
        proc = new Process();
        proc.StartInfo.WorkingDirectory = targetDir;
        proc.StartInfo.FileName = "mybatch.bat";
        proc.StartInfo.Arguments = string.Format("10");//this is argument
        proc.StartInfo.CreateNoWindow = false;
        proc.Start();
        proc.WaitForExit();
    }
    catch (Exception ex)
    {
        Console.WriteLine("Exception Occurred :{0},{1}", ex.Message,ex.StackTrace.ToString());
    }
}

如果要运行时隐藏dos窗口,需使用下面的代码

复制代码 代码如下:

proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表