Javaでファイル/ディレクトリを削除するプログラム

javaコード:
try {
Files.delete(path);
} catch (NoSuchFileException x) {
System.err.format(“%s: no such" + " file or directory%n", path);
} catch (DirectoryNotEmptyException x) {
System.err.format(“%s not empty%n", path);
} catch (IOException x) {

System.err.println(x);
}

Java

Posted by arkgame