List of usage examples for javax.swing JFileChooser isTraversable
public boolean isTraversable(File f)
From source file:Main.java
public static void main(String[] argv) { JFileChooser chooser = new JFileChooser(); boolean enabled = chooser.isTraversable(new File("abc")); chooser.showOpenDialog(null);//ww w . j a v a 2s. c o m }