Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个磁盘爬虫,如果用户没有提供现有路径,程序应该搜索所有可用的磁盘。有谁知道这是否可能,如果它是如何从 Java 中做到这一点的?
试试这个:
File.listRoots();
仅适用于 Windows,在基于 unix 的操作系统上,您将拥有 1 个 root,与磁盘数量无关。