带参数运行 EXE
我需要帮助来尝试从我的 C# 应用程序执行可执行文件。
假设路径为cPath
,EXE为HHTCtrlp.exe
,需要传递的参数为cParams
。
我该如何解决这个问题?
路径是一个变量的原因是,有 3 个不同的 EXE 文件要运行,路径会根据运行的文件而变化,与参数字符串相同。
任何帮助将不胜感激。
I need help in trying to execute an executable from my C# application.
Suppose the path is cPath
, the EXE is HHTCtrlp.exe
and the parameter that has to be passed is cParams
.
How would I go about this?
The reason why the path is a variable is that there are 3 different EXE files to run and the path will change depending on which one will run, same with the parameter string.
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要使用参数启动进程,可以使用以下代码:
要再次终止/退出程序,可以使用以下代码:
To start the process with parameters, you can use following code:
To kill/exit the program again, you can use following code: