从 C# 到外部 exe 的更多命令行参数

发布于 2025-01-02 09:27:29 字数 345 浏览 1 评论 0原文

我正在从 C# Windows 应用程序运行外部 exe。该exe是一个控制台窗口,我像这样传递初始命令行参数“a和b”

Process p = new Process();
p.StartInfo.FileName = "something.exe";
p.StartInfo.Arguments = "a b";
p.Start();
p.WaitForExit();
p.Close();

现在我需要在同一个exe中传递第二个参数,即应用程序“something.exe”以初始参数a和b开始执行然后下一步还需要一些输入c和d。我如何在 C# 应用程序中给出第二个输入 c 和 d。请给我一个解决方案。

I'm running an external exe from a C# windows application. The exe is an console window and i pass initial command line arguments "a and b" like this

Process p = new Process();
p.StartInfo.FileName = "something.exe";
p.StartInfo.Arguments = "a b";
p.Start();
p.WaitForExit();
p.Close();

Now i need to pass the second arguments in the same exe that is the application "something.exe" starts execution with the initial arguments a and b and then it further needs some inputs c and d in the next step. How can i give the second input c and d in the C# application. Please provide me a solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌上青苔 2025-01-09 09:27:29

明白了,伙计们

Process p = new Process();     
p.StartInfo.FileName = "something.exe"; 
p.StartInfo.Arguments = "a b"; 

**p.StartInfo.UseShellExecute = false;**    
**p.StartInfo.RedirectStandardInput = true;**

p.Start(); 

**p.StandardInput.WriteLine("c");** 
**p.StandardInput.WriteLine("d");**

p.WaitForExit(); 
p.Close();

Got it guys

Process p = new Process();     
p.StartInfo.FileName = "something.exe"; 
p.StartInfo.Arguments = "a b"; 

**p.StartInfo.UseShellExecute = false;**    
**p.StartInfo.RedirectStandardInput = true;**

p.Start(); 

**p.StandardInput.WriteLine("c");** 
**p.StandardInput.WriteLine("d");**

p.WaitForExit(); 
p.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文