(String name)
| 252 | /// |
| 253 | /// true if it exists |
| 254 | public boolean exists(String name) { |
| 255 | name = fixFileName(name); |
| 256 | CodenameOneImplementation implementation = Util.getImplementation(); |
| 257 | return implementation != null && implementation.storageFileExists(name); |
| 258 | } |
| 259 | |
| 260 | /// Lists the names of the storage files |
| 261 | /// |