gpt4 book ai didi

java - 如何获得所有驱动器的列表以及相应的驱动器类型(可移动、本地磁盘或 cd-rom、dvd-rom...等)?

转载 作者:太空狗 更新时间:2023-10-29 22:32:20 25 4
gpt4 key购买 nike

如何获取所有驱动器的列表以及相应的驱动器类型(可移动、本地磁盘或 cd-rom、dvd-rom 等)?

最佳答案

通过这段代码你可以获得所有驱动器及其类型描述

File[] paths;
FileSystemView fsv = FileSystemView.getFileSystemView();

// returns pathnames for files and directory
paths = File.listRoots();

// for each pathname in pathname array
for(File path:paths)
{
// prints file and directory paths
System.out.println("Drive Name: "+path);
System.out.println("Description: "+fsv.getSystemTypeDescription(path));
}

关于java - 如何获得所有驱动器的列表以及相应的驱动器类型(可移动、本地磁盘或 cd-rom、dvd-rom...等)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3542018/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com