如何在.NET中获得MS Explorer的完全限定路径?

时间:2009-07-29 11:02:56

标签: .net file operating-system explorer

如何在.NET中获取MS Explorer的完全限定路径?

该路径将用于使用一些命令行参数启动MS Explorer的新实例。

3 个答案:

答案 0 :(得分:1)

Windows资源管理器始终位于路径中,因此只需使用命令行参数调用explorer.exe即可。

同样适用于Internet Explorer,其文件名为iexplore.exe。

答案 1 :(得分:0)

如@devio所说,你并不需要在路径中指定它,但为了完整起见,你可以使用Environment.ExpandEnvironmentVariables方法:

string path = Environment.ExpandEnvironmentVariables(@"%SystemRoot%\Explorer.exe");

答案 2 :(得分:0)

谢谢!

感兴趣的人的完整代码段是:

    // Launch MS Explorer with the correct log file selected.

    //string pathToExplorer = System.IO.Path.Combine( Environment.ExpandEnvironmentVariables("%WinDir%"),
    //                                                "explorer.exe");

    string pathToExplorer = "explorer.exe";

    string pathToLogFile = Process.GetCurrentProcess().MainModule.FileName + ".log";

    string arguments = String.Format(   CultureInfo.InvariantCulture,
                                        "/select, \"{0}\"",
                                        pathToLogFile);

    // C:\Windows\explorer.exe /select, "C:\projects\trunk\bin\MyCompany.App.StackTester.exe.log"

    Process.Start(  pathToExplorer,
                    arguments);