The roots of this filesystem : Special Directories « Development « Java Tutorial






import java.io.File;

import javax.swing.JFileChooser;
import javax.swing.filechooser.FileSystemView;

public class MainClass {

  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]);
    }

  }
}








6.38.Special Directories
6.38.1.Home Directory
6.38.2.Default Directory
6.38.3.The roots of this filesystem
6.38.4.Root list with File.listRoots()