Here you can find the source of deleteFile(String filePath)
public static boolean deleteFile(String filePath)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static boolean deleteFile(String filePath) { boolean ret = true; try {// w w w.j a v a2 s. com File file = new File(filePath); file.delete(); } catch (Exception e) { e.printStackTrace(); ret = false; } return ret; } }