How to refresh explorer after mounting to show mounted drive in VC++?
I am using driver code for mounting FTP Drives with NPAddConnection3 now the problem is when i mount the driv开发者_运维问答e 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.
You should call SHChangeNotify - depending on how you register your driver pick SHCNE_ADDDRIVE, SHCNE_NETSHARE etc.
Docs here on MSDN:
http://msdn.microsoft.com/en-us/library/bb762118(VS.85).aspx
精彩评论