Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够从 Web 浏览器访问命令提示符。这听起来不太可能?
所以我的选择:
在浏览器中执行服务器请求,该平台(.NET/IIS?)可以与命令提示符对话(可以完成吗?)
编写一个可以监听命令提示符及其 I/O 的应用程序
如果我在说疯话,请告诉我。如果没有,任何信息将不胜感激!
您可以Process.Start()在 C#中调用并Redirect*在ProcessStartInfo.
Process.Start()
Redirect*
ProcessStartInfo
然后,您可以从您创建的流程的标准输入/输出流中读取和写入。