如何使用 IShellFolder 检测映射的网络驱动器是否已断开连接?
我正在使用 IShellFolder 接口来枚举 Shell 命名空间对象。这样做我得到了我的映射网络驱动器,其中一些已连接且可用,而另一些则不可用。
我想知道如何检测特定的映射驱动器是否可用。是否有一些我可以使用的方法、shell 函数或属性?
我正在使用 IShellFolder.GetAttributesOf() 方法来获取驱动器上的各种属性,但没有看到任何表明这一点的信息。
I am using the IShellFolder
interface to enumermate the Shell namespace objects. Doing this I am getting my mapped network drives, of which some are connected and available and others are not.
I would to know how I can detect whether or not a particular mapped drive is available. Is there some method, shell function or attribute that I can use?
I am using IShellFolder.GetAttributesOf()
method to get various attributes on the drive, but do not see anything there that would indicate this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果映射驱动器已断开连接,它将不会出现在
GetLogicalDrives
函数返回的位掩码中。例如,
If a mapped drive is disconnected it will not appear in the bitmask returned by the
GetLogicalDrives
function.For example,