()
| 161 | |
| 162 | /// Returns the file object for the parent directory. |
| 163 | public File getParentFile() { |
| 164 | String parentPath = getParent(); |
| 165 | if (parentPath == null) { |
| 166 | return null; |
| 167 | } |
| 168 | return new File(parentPath); |
| 169 | } |
| 170 | |
| 171 | /// Gets the path to the file. |
| 172 | public String getPath() { |
no test coverage detected