Here you can find the source of deleteFile(Path p)
public static void deleteFile(Path p)
//package com.java2s; //License from project: Open Source License import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; public class Main { public static void deleteFile(Path p) { try {/*from ww w. j ava2s .c om*/ Files.deleteIfExists(p); } catch (IOException e) { throw new RuntimeException(e); } } }