Java Files delete file if exist
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class Main { public static void main(String[] args) throws Exception { Path sourceFile = Paths.get("C:/home/docs/users.txt"); Files.deleteIfExists(sourceFile); }//w w w . java 2 s. c o m }