Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { // create new file File f = new File("test.txt"); // tries to delete a non-existing file boolean bool = f.delete(); System.out.println("File deleted: " + bool); } }