public void saveSettings() { FileStream stream = new FileStream(pathSettings, FileMode.Create); JavaProperties settings = new JavaProperties(); settings.SetProperty("pathSongs", pathSongs); settings.SetProperty("pathReplays", pathReplays); settings.SetProperty("pathOsuDB", pathOsuDB); JavaPropertyWriter writer = new JavaPropertyWriter(settings); writer.Write(stream, "osuReplayAnalyzer settings"); stream.Close(); }