Changes between Version 109 and Version 110 of DevelopersGuide/DevelopingPlugins
- Timestamp:
- 2022-01-03T14:55:37+01:00 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopersGuide/DevelopingPlugins
v109 v110 187 187 188 188 === Accessing the local file system === 189 JOSM plugins are currently allowed to read from and write to the local file system. Please write plugin specific files to {{{${josm.home}/preferences/${pluginname}}}}. If your plugin main class subclasses from [source:/trunk/src/org/openstreetmap/josm/plugins/Plugin.java Plugin] you can use the method {{{String getPluginDir()}}} to get the name of the plugin specific data directory.189 JOSM plugins are currently allowed to read from and write to the local file system. Please write plugin specific files to `${josm.home}/preferences/${pluginname}`. If your plugin main class subclasses from [source:/trunk/src/org/openstreetmap/josm/plugins/Plugin.java Plugin] you can use the method {{{String getPluginDir()}}} to get the name of the plugin specific data directory. 190 190 191 191