c#运行批处理文件

2021/12/28 22:07:11

本文主要是介绍c#运行批处理文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 /// <summary>
        /// 代码执行
        /// </summary>
        /// <param name="batName"></param>
        public static void RunBat()
        {
            Process proc = null;
            string targetDir = "Assets/../../../../bats/";//this is where mybatch.bat lies
            try
            {
                proc = new Process();
                proc.StartInfo.WorkingDirectory = targetDir;
                proc.StartInfo.FileName = "xxx1.bat";
                proc.StartInfo.CreateNoWindow = false;
                proc.Start();
                proc.WaitForExit();
                proc.StartInfo.FileName = "xxx2.bat";
                proc.StartInfo.CreateNoWindow = false;
                proc.Start();
                proc.WaitForExit();
                proc.StartInfo.FileName = "xxx3.bat";
                proc.Start();
                proc.WaitForExit();
            }
            catch (Exception ex)
            {
                UnityEngine.Debug.LogError($"Exception Occurred :{ex.Message},{ex.StackTrace.ToString()}!");
            }
        }


这篇关于c#运行批处理文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程