How To: Execute command line in C#, get STD OUT results

后端 未结 17 1235
既然无缘
既然无缘 2020-11-21 13:12

How do I execute a command-line program from C# and get back the STD OUT results? Specifically, I want to execute DIFF on two files that are programmatically selected and wr

17条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 14:04

    This may not be the best/easiest way, but may be an option:

    When you execute from your code, add " > output.txt" and then read in the output.txt file.

提交回复
热议问题