有什么方法可以找到Java中的映射驱动器吗?

发布于 2024-12-06 11:23:03 字数 56 浏览 0 评论 0 原文

我想在我的 Java 代码中找出给定的驱动器路径是映射驱动器还是普通驱动器。是否有可用的 API?

I want to find out a given drive path is mapped drive or normal drive in my Java code. Is there any API already available for that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

眼中杀气 2024-12-13 11:23:03

为此,您可以使用 WMI,或者使用 Java 的 WMI 库,或者调用 wmic.exe。看起来是一个相当简单的查询,Select * From Win32_LogicalDiskWhere DriveType = 4

作为参考:http://blogs.technet.com/b/heyscriptingguy/archive/2005/10/27/how-can-i-define-which-drives-are-mapped-to-network-shares。 ASPX

You could probably use WMI for this, either use a WMI library for Java, or call wmic.exe. Looks to be a fairly simple query, Select * From Win32_LogicalDisk Where DriveType = 4

As a reference: http://blogs.technet.com/b/heyscriptingguy/archive/2005/10/27/how-can-i-determine-which-drives-are-mapped-to-network-shares.aspx

一腔孤↑勇 2024-12-13 11:23:03

如果您谈论的是驱动器号,那么 Java 中没有这个概念。 Java试图跨平台,大多数平台没有驱动器盘符的概念。

If you're talking about drive letters, then there is no concept of that in Java. Java tries to be cross-platform, and most platforms have no concept of drive letters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文