1
我正在查找一個Java代碼,以便我可以檢測Mac中的所有卷(或驅動器)。我看到互聯網上的各種代碼,但沒有任何工作。我使用的當前代碼如下所示:在Mac中檢測可移動驅動器
FileSystemView fsv = FileSystemView.getFileSystemView();
File[] roots = fsv.getRoots();
for (File f: roots) {
System.out.println(fsv.getSystemDisplayName(f);
}
這不適用於Mac。有人知道哪些代碼可以讓我在Mac上檢測驅動器嗎?
非常感謝。
如何在Linux中檢測可移動驅動器..? – 2014-05-09 04:10:06