如何在安装后刷新资源管理器以在 VC++ 中显示已安装的驱动器?
我正在使用驱动程序代码通过 NPAddConnection3 安装 FTP 驱动器,现在问题是当我安装驱动器时,它已安装,但我需要终止资源管理器并手动重新启动才能查看已安装的驱动器。
如何解决这个问题? 我如何在不杀死资源管理器的情况下查看已安装的驱动器? 提前致谢。
I am using driver code for mounting FTP Drives with NPAddConnection3 now the problem is when i mount the drive it gets mounted but i need to kill explorer and restart manually to see the mounted drive .
How to solve this problem ?
How i can get see mounted drive without killing the explorer ?
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该调用 SHChangeNotify - 根据您注册驱动程序的方式选择 SHCNE_ADDDRIVE、SHCNE_NETSHARE 等。MSDN
上的文档:
You should call SHChangeNotify - depending on how you register your driver pick SHCNE_ADDDRIVE, SHCNE_NETSHARE etc.
Docs here on MSDN: