Here you can find the source of delete(String filePath)
public static boolean delete(String filePath)
//package com.java2s; //License from project: LGPL import java.io.File; public class Main { public static boolean delete(String filePath) { File file = new File(filePath); return file.delete(); }//from ww w . j ava 2 s . c o m }