如何在我自己的控制台应用程序中执行命令提示符命令

时间:2014-04-23 07:02:44

标签: c# console-application command-prompt

如何让我的控制台应用程序窗口像命令提示符窗口一样运行并执行我的命令行参数?

2 个答案:

答案 0 :(得分:1)

这应该让你开始:

public class Program
{
    public static void Main(string[] args)
    {
        var proc = new Process
        {
            StartInfo = new ProcessStartInfo
            {
                FileName               = "cmd.exe",
                CreateNoWindow         = true,
                UseShellExecute        = false,
                RedirectStandardInput  = true,
                RedirectStandardOutput = true,
                RedirectStandardError  = true
            }
        };

        proc.Start();

        new Thread(() => ReadOutputThread(proc.StandardOutput)).Start();
        new Thread(() => ReadOutputThread(proc.StandardError)).Start();

        while (true)
        {
            Console.Write(">> ");
            var line = Console.ReadLine();
            proc.StandardInput.WriteLine(line);
        }
    }

    private static void ReadOutputThread(StreamReader streamReader)
    {
        while (true)
        {
            var line = streamReader.ReadLine();
            Console.WriteLine(line);
        }
    }
}

基础知识是:

  • 打开cmd.exe进程并捕获所有三个流(in,out,err)
  • 中传递来自外部的输入
  • 读取输出并转移到您自己的输出。

“重定向”选项很重要 - 否则您无法使用该流程的相应流。

上面的代码非常基础,但你可以改进它。

答案 1 :(得分:0)

我相信你正在寻找这个

var command = "dir";
System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo("cmd", "/c " + command);
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
string result = proc.StandardOutput.ReadToEnd();
Console.WriteLine(result);