Returns the parent of this file or directory or null if there is no parent directory. @return directory or null
()
| 204 | * @return directory or {@code null} |
| 205 | */ |
| 206 | public IOFile parent() { |
| 207 | final String parent = file.getParent(); |
| 208 | return parent == null ? null : new IOFile(parent + '/'); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Returns the children of the path. |
no outgoing calls
no test coverage detected