Here you can find the source of delFile(String pathName)
public static boolean delFile(String pathName)
//package com.java2s; import java.io.File; public class Main { public static boolean delFile(File file) { if (file.isFile()) { return file.delete(); }//from w w w. j a va 2s . c o m return false; } public static boolean delFile(String pathName) { File path = new File(pathName); return delFile(path); } }