好的,正如标题暗示的那样,我遇到了一些麻烦....当我使用下面的代码时它会运行但是我甚至无法使用> output.txt获取它的运行状态......
ProcessStartInfo x = new ProcessStartInfo();
x.FileName = "somefile.exe";
x.Arguments = arg1 + " " + arg2 + " " + arg3 + " " + arg4;
x.WorkingDirectory = workDir;
x.WindowStyle = ProcessWindowStyle.Hidden;
Process mde = Process.Start(x);
mde.WaitForExit();
现在,让我感到困惑的是,在我添加捕获输入的代码的那一刻,我被抛出一个异常,说明我正在尝试运行的exe文件不存在。所以当我使用....
ProcessStartInfo x = new ProcessStartInfo();
x.FileName = "somefile.exe";
x.Arguments = arg1 + " " + arg2 + " " + arg3 + " " + arg4;
x.WorkingDirectory = workDir;
x.WindowStyle = ProcessWindowStyle.Hidden;
modelf.UseShellExecute = false;
modelf.RedirectStandardOutput = true;
Process mde = Process.Start(x);
mde.WaitForExit();
我到底做错了什么。这就像使用useshellexecute属性时无法设置工作目录属性,但从我读到的情况来看并非如此。发生什么了?为什么它能找到文件并在第一个例子中正确执行而不是在第二个例子中执行?
答案 0 :(得分:2)
MSDN引自http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.workingdirectory.aspx
当UseShellExecute为false时, 不使用WorkingDirectory属性 找到可执行文件。相反,它是 由启动的进程使用 并且只有意义 新流程的背景。
答案 1 :(得分:0)
如果有人想知道它的工作方式......
Process x = new Process
{
StartInfo =
{
FileName = fullPathToExe,
Arguments = arg1 + " " + arg2 + " " + arg3 + " " + arg4,
WorkingDirectory = outDir,
WindowStyle = ProcessWindowStyle.Hidden,
UseShellExecute = false,
RedirectStandardOutput = true
}
};
x.Start();
string output = x.StandardOutput.ReadToEnd();
x.WaitForExit();
它仍然会闪烁一个窗口,但我认为createnowindow = true会解决这个问题。我想我会发布代码以防其他人需要它。