()
| 238 | /// |
| 239 | /// - `IOException` |
| 240 | public boolean createNewFile() throws IOException { |
| 241 | OutputStream os = null; //NOPMD CloseResource |
| 242 | try { |
| 243 | os = FileSystemStorage.getInstance().openOutputStream(path); |
| 244 | } finally { |
| 245 | Util.cleanup(os); |
| 246 | } |
| 247 | return exists(); |
| 248 | } |
| 249 | |
| 250 | /// Deletes the file described by this object on the file system. |
| 251 | /// |
nothing calls this directly
no test coverage detected