FileSystemView: getRoots() : FileSystemView « javax.swing.filechooser « Java by API






FileSystemView: getRoots()

 

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

  }
}

   
  








Related examples in the same category

1.FileSystemView: getDefaultDirectory()
2.FileSystemView: getHomeDirectory()