我正在开发一个 Windows 应用程序。我正在调用命令提示符,我需要调用 exe 文件,该 exe 文件带有参数。
我能够打开命令提示符但无法发送参数
string strCmdText = "create-keyfile.exe ..\\KatanaFirmware\\key-template.txt ..\\Keyfiles\\new-keyfile.txt " + cableTextBox.Text.Trim()+" " + startIdTextBox.Text.Trim();
System.Diagnostics.Process.Start("CMD.exe", strCmdText);
可以请帮助我。
谢谢
普尼斯