我目前正在开发一个可以处理 Minecraft 服务器的程序。我正在运行我的批处理女巫记录服务器,我现在希望批处理(在我的代码中称为批处理)登录我的名为 lg_log 的列表框。
如果有可能,我该怎么做?
我在 Visual Studio 中编程 - C# 中的 Windows 窗体。
编辑:这是我的代码:
Process batch = new Process();
string PathtoRunFile = @"\Servers\Base\start_server.bat";
string current_directory = Directory.GetCurrentDirectory();
string server_base = @"\Servers\Base";
string working_directory = current_directory + server_base;
batch.StartInfo.FileName = current_directory + PathtoRunFile;
batch.StartInfo.Arguments = "";
batch.StartInfo.WorkingDirectory = working_directory;
batch.StartInfo.UseShellExecute = true;
batch.Start();