Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

Calling git clone from C# app doesn't return output data

I am calling git clone from a C# application by creating a new process and it calls git successfully but no ouput is returned to my delegate. This means I can't provide any updates to the user as the process progresses. The Clone_DataOutputReceived method is not being called at all.

public void CloneRepo(string repoUrl, string dataPath)
{
   var process = new Process();
   process.StartInfo.FileName = @"git.exe";
   process.StartInfo.Arguments = $"clone {repoUrl}";
   process.StartInfo.WorkingDirectory = dataPath;

   process.OutputDataReceived += Clone_DataOutputReceived;

   process.StartInfo.RedirectStandardOutput = true;
   process.StartInfo.RedirectStandardError = true;
   process.StartInfo.UseShellExecute = false;
   process.StartInfo.CreateNoWindow = true;

   process.Start();
   process.BeginOutputReadLine();
   process.WaitForExit();
   process.CancelOutputRead();
}


private void Clone_DataOutputReceived(object sender, DataReceivedEventArgs e)
{
   // This method is not being called
   // Expecting d.Data to be populated with the line from the output
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think you want to set FileName to "cmd.exe" and then issue process.SendCommand("git.exe") to the cmd instance.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...