如何在 .NET 中获得 MS Explorer 的完全限定路径?
如何在 .NET 中获得 MS Explorer 的完全限定路径?
该路径将用于通过一些命令行参数启动 MS Explorer 的新实例。
How to get a fully qualified path to MS Explorer in .NET?
The path will be used to launch a new instance of MS Explorer with some command line parameters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Windows 资源管理器始终位于路径中,因此只需使用命令行参数调用 explorer.exe 就足够了。
同样适用于 Internet Explorer,其文件名为 iexplore.exe。
Windows Explorer is always in the Path, so just calling explorer.exe with the command line parameters should be enough.
Same applies to Internet Explorer, whose file name is iexplore.exe.
正如 @devio 所说,您实际上不需要指定它,因为它在路径中,但为了完整起见,您可以使用
Environment.ExpandEnvironmentVariables
方法:As said by @devio, you don't really need to specify it as it's in the path, but for the sake of completeness, you could use the
Environment.ExpandEnvironmentVariables
method:谢谢!
对于任何感兴趣的人来说,完整的代码片段是:
Thanks!
The full code snippet for anyone interested, is: