zoukankan      html  css  js  c++  java
  • C# 执行批处理文件(*.bat)的方法代码

    代码如下:

    static void Main(string[] args)
    {
        Process proc = null;
        try
        {               
            string targetDir = string.Format(@"D:adapterssetup");//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;
  • 相关阅读:
    Redis进阶
    redis常用指令
    MarkDown基本语法
    JAVA多线程面试
    使用POI操作Excel
    IDEA+GIT的使用
    获取地址栏的参数
    mybatis逆向工程
    遍历map集合
    springboot批量删除
  • 原文地址:https://www.cnblogs.com/aiqingqing/p/4607638.html
Copyright © 2011-2022 走看看