Displaying 1 result from an estimated 1 matches for "redirectstandardoutput".
2007 Aug 21
1
runing .r file from C#
...this topic I am trying to do this :
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "E:/R/R-2.5.1 /bin/Rterm.exe";
proc.StartInfo.Arguments = " <'test.r' --no-save";
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardOutput = false;
proc.Start();
bun when Rterm starts it shows parameter <test.r ignored
When I try to do the same from a command line shell it DOES work just fine :
" Rterm.exe <test.r --no-save" runs the file without any problems.
Do you have any idea how to make it not to ignore the...