FileChooser - select only directories but still see files?
Is it possible to have a JFileChooser that, while only allowing a directory to be selected, still shows files in the text area?
If I set this:
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
it indeed allows only directories to be selected, but I can't see files in the directory (which could indicate to the user if this is the directory they wanted)

