c#调用cmd(可输入指令)

  • Post author:
  • Post category:其他


        /// <summary>
        /// c#调用cmd
        /// </summary>
        /// <param name="strcmd">输入的命令</param>
        public static void RunCommand(string strcmd)
        {
            System.Diagnostics.Process p = new System.Diagnostics.Process();
            p.StartInfo.FileName = "cmd.exe";
            p.StartInfo.UseShellExecute = false;    //是否使用操作系统shell启动
            p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息
            p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
            p.StartInfo.RedirectStandardError = true;//重定向标准错误输出
            p.StartInfo.CreateNoWindow = true;//不显示程序窗口
            p.Start();//启动程序

            //向cmd窗口发送输入信息
            p.StandardInput.WriteLine(strcmd + "&exit");

            p.StandardInput.AutoFlush = true;
            //p.StandardInput.WriteLine("exit");
            //向标准输入写入要执行的命令。这



版权声明:本文为c13_tianming原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。