fc.setAvailableButtons(FolderChooser.BUTTON_ALL);
fc.setMultiSelectionEnabled(multiple);
fc.setDialogTitle("");
// show it
int result = fc.showOpenDialog(null);
if (result == FolderChooser.APPROVE_OPTION) {
// collect & save
List<String> s = fc.getRecentList();
s.add(0, fc.getSelectedFile().getAbsolutePath());
if (s.size() >= 10) {