这让我难以置信。使用以下代码:
Process du = new Process();
string cmdPath = System.IO.Path.Combine(Environment.SystemDirectory, "du.exe");
Debug.WriteLine(cmdPath);
ProcessStartInfo info = new ProcessStartInfo(cmdPath);
info.CreateNoWindow = true;
info.Arguments = arguments;
info.UseShellExecute = false;
info.RedirectStandardOutput = true;
du.StartInfo = info;
du.EnableRaisingEvents = true;
du.OutputDataReceived += responseParser;
du.Start();
du.BeginOutputReadLine();
du.WaitForExit();
我运行它,我得到:
未处理的异常:System.ComponentModel.Win32Exception:系统找不到指定的文件
虽然 cmdPath 的输出值为C:\Windows\system32\du.exe
!
当然,如果我只是在cmdPath
命令提示符中输入 的内容,它会运行 du.exe 并为我提供使用信息。
另外,如果我只用“du.exe”替换命令路径,并将 du.exe 放在工作目录中,一切正常。但我想引用系统位置中的那个。
那么发生了什么?据我所知,我有一个合法的文件说明符,但为什么不Process.Start()
执行呢?该基本代码还执行其他几个程序并获取它们的输出。其他都可以正常工作,尽管 du.exe 与它们不同,因为它位于 system32 目录中。这有关系吗?
谢谢