Recursively creates the directory if it does not exist yet. @return true if the directory exists or has been created
()
| 196 | * @return {@code true} if the directory exists or has been created |
| 197 | */ |
| 198 | public boolean md() { |
| 199 | return file.exists() || file.mkdirs(); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Returns the parent of this file or directory or {@code null} if there is no parent directory. |