Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccFF
File file = new File("file");
if (!file.delete()) {
  System.out.println("Deletion failed");
}

Compliant Solution

...

This compliant solution uses the java.nio.file.Files.delete() method from Java SE 7 to delete the file:

...