} else {
JFileChooser dia = new JFileChooser(".");
dia.setCurrentDirectory(new File(System.getProperty("user.home")));
dia.setDialogTitle("Please show me the path to " + fileID + " (select the directory and confirm)");
dia.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int result = dia.showOpenDialog(null);
if (result == JFileChooser.APPROVE_OPTION) {
dotStarterFileFile = dia.getSelectedFile();
} else {
GeneralDialog.message(fileID + " is not available, sorry I will not be able to perform the according actions.", fileID + " not available");
throw new RuntimeException(fileID + " not available: " + dsf);