()
| 348 | /// |
| 349 | /// True on success. |
| 350 | public boolean mkdir() { |
| 351 | FileSystemStorage.getInstance().mkdir(path); |
| 352 | return exists() && isDirectory(); |
| 353 | } |
| 354 | |
| 355 | /// Attempts to make the directory (and all parent directories) of this object. |
| 356 | /// |
no test coverage detected