我正在尝试创建一个后台工作人员来创建一个进程,该进程会执行一些 ovf 命令。在这两者之间,我尝试通过发送 ctrl+c 来中止操作。这个网站上有类似的问题,但没有一个解决了这个问题。
private void DeployOVF()
{
p = new Process();
ProcessStartInfo pi = new ProcessStartInfo("ovftool.exe", "--machineOutput "+ FileName + " vi://uname:pwd@Ip Address");
pi.UseShellExecute = false;
pi.RedirectStandardOutput = true;
pi.RedirectStandardInput = true;
pi.RedirectStandardError = true;
pi.CreateNoWindow = true;
p.StartInfo = pi;
p.Start();
StreamReader myStreamReader = p.StandardOutput;
string myString;
bool progressStarted = false;
while ((myString = myStreamReader.ReadLine()) != null)
{
//Logic to display the progress
}
p.WaitForExit();
p.Close();
}
这是我发送我的 ctrl+c 以中止进度的地方,
private void button1_Click(object sender, EventArgs e)
{
p.StandardInput.Write("\x3");
p.StandardInput.Close();
}