Here you can find the source of delete(File file)
public static boolean delete(File file)
//package com.java2s; //License from project: Apache License import java.io.*; public class Main { public static boolean delete(String filePath) { return delete(new File(filePath)); }/*from ww w . j a v a 2s. co m*/ public static boolean delete(File file) { return file.exists() && file.delete(); } }