gpt4 book ai didi

c# - 使用来自文本文件的参数运行 exe

转载 作者:行者123 更新时间:2023-11-30 16:46:55 24 4
gpt4 key购买 nike

正如标题所说,我正在尝试使用来自 TXT 文件(在资源中)的参数/参数运行 EXE 我知道如何使用参数而不是来自 TXT 的参数启动程序。这是我所做的,但似乎不起作用!

private void btnStart_Click(object sender, RoutedEventArgs e)
{
ProcessStartInfo startInfo = new ProcessStartInfo(string.Concat("RustClient.exe"));
startInfo.Arguments = @"Resources\arguments.txt";
startInfo.UseShellExecute = false;
System.Diagnostics.Process.Start(startInfo);
}

它启动程序但没有我放入 txt 文件的参数。

如果我想从 TXT 中读取它们是因为我希望它们是可编辑的。基本上,我的程序将是一种为不了解它们的人编辑启动选项的简单方法

我在编码方面非常菜鸟,这是我的第一个编码项目,我必须用谷歌搜索所有内容 ^^

最佳答案

首先从文件中读取参数文本,然后将其分配给参数

private void btnStart_Click(object sender, RoutedEventArgs e)
{
string arg = File.ReadAllText("text file location");
ProcessStartInfo startInfo = new ProcessStartInfo(string.Concat("RustClient.exe"));
startInfo.Arguments = arg;
startInfo.UseShellExecute = false;
System.Diagnostics.Process.Start(startInfo);
}

关于c# - 使用来自文本文件的参数运行 exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40012525/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com