Convenience method to get a File object for the specified filename inside the settings folder. Used to get preferences and recent sketch files. @param filename A file inside the settings folder. @return filename wrapped as a File object inside the settings folder
(String filename)
| 1935 | * @return filename wrapped as a File object inside the settings folder |
| 1936 | */ |
| 1937 | static public File getSettingsFile(String filename) { |
| 1938 | return new File(getSettingsFolder(), filename); |
| 1939 | } |
| 1940 | |
| 1941 | |
| 1942 | static public File getToolsFolder() { |
no test coverage detected