如何使用 IShellFolder 检测映射的网络驱动器是否已断开连接?

发布于 2024-12-29 01:28:17 字数 215 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞花火° 2025-01-05 01:28:17

如果映射驱动器已断开连接,它将不会出现在 GetLogicalDrives 函数返回的位掩码中。

例如,

wchar_t wchDriveLetter = L'P'; // example
int iDriveNumber = towupper(wchDriveLetter) - L'A';
bool fIsDisconnected = ( GetLogicalDrives() & ( 1 << iDriveNumber ) ) == 0;

If a mapped drive is disconnected it will not appear in the bitmask returned by the GetLogicalDrives function.

For example,

wchar_t wchDriveLetter = L'P'; // example
int iDriveNumber = towupper(wchDriveLetter) - L'A';
bool fIsDisconnected = ( GetLogicalDrives() & ( 1 << iDriveNumber ) ) == 0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文