Here you can find the source of delFile(String filePathAndName)
public static void delFile(String filePathAndName)
//package com.java2s; //License from project: Apache License public class Main { public static void delFile(String filePathAndName) { java.io.File myDelFile = new java.io.File(filePathAndName); if (myDelFile.exists()) { myDelFile.delete();/*from ww w . java 2 s. co m*/ } } }