Get the roots of filesystem in Java
Description
The following code shows how to get the roots of filesystem.
Example
// www .j av a 2 s .co m
import java.io.File;
import javax.swing.JFileChooser;
import javax.swing.filechooser.FileSystemView;
public class Main {
public static void main(String[] args) {
JFileChooser chooser = new JFileChooser();
FileSystemView view = chooser.getFileSystemView();
System.out.println("The roots of this filesystem are: ");
File[] roots = view.getRoots();
for (int i = 0; i < roots.length; i++) {
System.out.println(" " + roots[i]);
}
}
}
The code above generates the following result.