C# 执行bat批处理文件

</pre><pre name="code" class="csharp">
</pre><pre name="code" class="csharp">    
    private void RunBat(string batPath)
        {
            Process pro = new Process();


            FileInfo file = new FileInfo(batPath);
            pro.StartInfo.WorkingDirectory = file.Directory.FullName;
            pro.StartInfo.FileName = batPath;
            pro.StartInfo.CreateNoWindow = false;
            pro.Start();
            pro.WaitForExit();
        }


转载自[ http://www.cnblogs.com/zjfree/ ],亲测可用,感谢分享

你可能感兴趣的:(C# 执行bat批处理文件)