删除文件和目录
import java.io.IOException; import java.nio.file.FileSystems; /** 来 自 时 代 J a v a 公 众 号 - N o w J a v a . c o m **/ import java.nio.file.Files; import java.nio.file.Path; public class Main { public static void main(String[] args) throws Exception { Path path = FileSystems.getDefault().getPath("C:/folder1/photos", "test_1.jpg"); // delete the file try { Files.dele