Convenience method to get a File object for the specified filename inside the settings folder. For now, only used by Preferences to get the preferences.txt file. @param filename A file inside the settings folder. @return filename wrapped as a File object inside the settings folder
(String filename)
| 282 | * @return filename wrapped as a File object inside the settings folder |
| 283 | */ |
| 284 | static public File getSettingsFile(String filename) { |
| 285 | return new File(getSettingsFolder(), filename); |
| 286 | } |
| 287 | |
| 288 | static public File getSettingsFolder() { |
| 289 | if (getPortableFolder() != null) |
no test coverage detected