final String html = this.mHTMLReport;
final String path = NbPreferences.forModule(SimpleHTMLReport.class).get(LAST_PATH, null);
JFileChooser fileChooser = new JFileChooser(path);
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int result = fileChooser.showOpenDialog(WindowManager.getDefault().getMainWindow());
if (result == JFileChooser.APPROVE_OPTION) {
final File destinationFolder = fileChooser.getSelectedFile();
NbPreferences.forModule(SimpleHTMLReport.class).put(LAST_PATH, destinationFolder.getAbsolutePath());
Thread saveReportThread = new Thread(new Runnable() {