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






FileSystemView: getDefaultDirectory()

 

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 default directory is " + view.getDefaultDirectory());
  }
}

   
  








Related examples in the same category

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