C# 执行CMD命令

Posted bobo-bobo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 执行CMD命令相关的知识,希望对你有一定的参考价值。

        /// <summary>
        /// 执行Cmd命令
        /// </summary>
        public void ExecCmd(string cmdstr)
        {
            System.Diagnostics.Process process = new System.Diagnostics.Process();
            process.StartInfo.FileName = "cmd.exe";
            process.StartInfo.UseShellExecute = false;
            process.StartInfo.CreateNoWindow = true;
            process.StartInfo.RedirectStandardOutput = true;
            process.StartInfo.RedirectStandardInput = true;
            process.Start();

            process.StandardInput.WriteLine(cmdstr);
            process.StandardInput.AutoFlush = true;
            process.StandardInput.WriteLine("exit");

            StreamReader reader = process.StandardOutput;//截取输出流

            string output = reader.ReadLine();//每次读取一行

            while (!reader.EndOfStream)
            {
                PrintThrendInfo(output);
                output = reader.ReadLine();
            }

            process.WaitForExit();
        }

 

以上是关于C# 执行CMD命令的主要内容,如果未能解决你的问题,请参考以下文章

C#在字符串中执行带引号的CMD命令

C#应用程序如何不弹出cmd命令行窗口执行

从代码执行 CMD 命令

小5聊C#基础之调用cmd执行命令并且执行遇到需要输入Y或N的情况

C# 执行CMD命令

c# 打开cmd.exe进程并执行多条命令