如何使用 .net 在 Windows 资源管理器中预选文件?
如何在特定文件夹上弹出 Windows 资源管理器并突出显示特定文件?
我对 XP、Vista 和 Windows 7 的解决方案感兴趣。
How can I popup a windows explorer on a specific folder with a specific file highlighted ?
I'm interested in solutions for XP, Vista and Windows 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
explorer.exe 中有一个“/select”开关:
您可以使用 Process.Start 来执行它。
There's a "/select" switch in explorer.exe:
You can use the Process.Start to execute it.
请参阅 Windows XP 的 Explorer.exe 命令行选项,网址为 http://support .microsoft.com/kb/314853
/select,
示例 1:
Explorer /select,C:\TestDir\TestProg.exe
(打开一个窗口视图,并选择 TestProg。)See Explorer.exe Command-Line Options for Windows XP at http://support.microsoft.com/kb/314853
/select,<object>
Opens a window view with the specified folder, file, or program selected.Example 1:
Explorer /select,C:\TestDir\TestProg.exe
(Opens a window view with TestProg selected.)