C#: Problem running shell commands - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T11:48:22Zhttp://stackoverflow.com/feeds/question/817176http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/817176/c-problem-running-shell-commands3C#: Problem running shell commandsThe.Anti.92009-05-03T14:17:26Z2009-05-06T19:49:37Z
<p>I'm trying to get the PHP parser to run a page and then return the results to my server, however when I run the command via my code, it returns nothing. I know the command is correct because if I run it manually with the same path, it works fine. Heres my code:</p>
<pre><code>var p = new Process
{
StartInfo = new ProcessStartInfo("C:\\xampp\\php\\php.exe", path)
{
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
var output = new StringWriter();
var error = new StringWriter();
p.OutputDataReceived += (sender, args) => output.WriteLine(args.Data);
p.ErrorDataReceived += (sender, args) => error.WriteLine(args.Data);
p.Start();
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.WaitForExit();
if (p.ExitCode != 0)
{
throw new Exception(string.Format(
"PHP failed with the following output:{0}{1}",
/* {0} */ Environment.NewLine,
/* {1} */ error.GetStringBuilder().ToString()));
}
var res = output.GetStringBuilder().ToString();
Console.WriteLine(res);
</code></pre>
<p>EDIT:
With this current code, it throws the exception in the code with no output.</p>
http://stackoverflow.com/questions/817176/c-problem-running-shell-commands/817192#8171925Answer by JaredPar for C#: Problem running shell commandsJaredPar2009-05-03T14:25:17Z2009-05-03T14:32:10Z<p>The problem is that you are reading the output before the program finishes. You need to wait for program exit to process the output. Otherwise you'll be processing the output before the parse is complete. Add the following line in.</p>
<pre><code>p.Start();
p.WaitForExit(); // New line
</code></pre>
<p><strong>EDIT</strong> OP said they are still having problems.</p>
<p>Try removing the CMD portion of the command. Just run the PHP command directly. It also may be beneficial to allow the creation of a window for debugging purposes so you can see any errors that may come out of running the command.</p>
http://stackoverflow.com/questions/817176/c-problem-running-shell-commands/817193#8171931Answer by Adam Robinson for C#: Problem running shell commandsAdam Robinson2009-05-03T14:26:05Z2009-05-03T14:26:05Z<p><code>ReadToEnd()</code> just reads the entire contents of the stream as they are at that point in time. Given that you're calling this immediately after <code>Start()</code>, the stream is likely empty. You have a couple of options</p>
<ul>
<li>Call <code>ReadLine()</code> instead, but this will only read one line</li>
<li><code>p.WaitForExit()</code> then call <code>ReadToEnd()</code>, but I am not certain this keeps the stream open. If this does, then this is your best option.</li>
</ul>
http://stackoverflow.com/questions/817176/c-problem-running-shell-commands/817196#8171961Answer by Martín Marconcini for C#: Problem running shell commandsMartín Marconcini2009-05-03T14:26:34Z2009-05-03T14:26:34Z<p>You need to add p.WaitForExit(); after the p.Start(); else the output is not ready when you try to read it. </p>
http://stackoverflow.com/questions/817176/c-problem-running-shell-commands/817219#8172190Answer by Colin Burnett for C#: Problem running shell commandsColin Burnett2009-05-03T14:34:20Z2009-05-03T14:34:20Z<p>Is there a reason you're running php through cmd? Can't you just execute it directly?</p>
<p>It has been my experience that executing processes through .NET is the worst way to execute another process. fork() under unix is amazingly much better. I have had so many issues that my advice is that you <b>STRONGLY</b> consider looking at <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.beginoutputreadline.aspx" rel="nofollow">Process.BeginOutputReadLine()</a> and go the asynchronous route in your reading. ReadToEnd and ReadToLine can hang indefinitely especially if you have lengthy output to capture.</p>
<p>I would paste an example but it is rather lengthy.</p>
http://stackoverflow.com/questions/817176/c-problem-running-shell-commands/819476#8194762Answer by Atif Aziz for C#: Problem running shell commandsAtif Aziz2009-05-04T09:39:58Z2009-05-04T09:39:58Z<p>The most robust way to invoke the process and capture its output or error would to try it the following way:</p>
<pre><code>var p = new Process {
StartInfo = new ProcessStartInfo("php", path) {
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
var output = new StringWriter();
var error = new StringWriter();
p.OutputDataReceived += (sender, args) => output.WriteLine(args.Data);
p.ErrorDataReceived += (sender, args) => error.WriteLine(args.Data);
p.Start();
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.WaitForExit();
if (p.ExitCode != 0) {
throw new Exception(string.Format(
"PHP failed with the following output:{0}{1}",
/* {0} */ Environment.NewLine,
/* {1} */ error.GetStringBuilder().ToString()));
}
var res = output.GetStringBuilder().ToString();
Console.WriteLine(res);
</code></pre>
http://stackoverflow.com/questions/817176/c-problem-running-shell-commands/831406#8314062Answer by Vikram Sudhini for C#: Problem running shell commandsVikram Sudhini2009-05-06T19:49:37Z2009-05-06T19:49:37Z<p>Set WorkingDirectory Path</p>
<pre><code>var p = new Process
{
StartInfo = new ProcessStartInfo("php", path)
{
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
CreateNoWindow = true,
WorkingDirectory = workingDir
}
};
</code></pre>