-
Task
-
Resolution: Done
-
Major
-
1.5.3
-
None
Replace classic io with nio delete/createDirectory operations. NIO provides much better reason details in IOExceptions.
if (!f.delete()) throw new IOException("Could not delete " + f);
becomes
Files.delete(f.toPath());