Here you can find the source of delFile(String filePath)
public static void delFile(String filePath)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static void delFile(String filePath) { File picFile = new File(filePath); if (picFile.exists()) { picFile.delete();//from w w w. j a v a 2s. c om } picFile = null; } }