3

这让我难以置信。使用以下代码:

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 目录中。这有关系吗?

谢谢

4

1 回答 1

15

这取决于文件系统重定向器。您将在 64 位机器上运行 32 位进程。这意味着它C:\Windows\system32被透明地重定向到C:\Windows\SysWOW64,我希望du.exe在那里找不到。如果您C:\Windows\Sysnative改用,那么您将能够找到该文件。

但是,我怀疑您已添加du.exe到系统目录,因为这不是标准的 Windows 组件。你不应该那样做。我建议您将文件放在其他位置,因为您根本不应该在系统目录中写入。

于 2012-04-27T23:44:39.797 回答