Here you can find the source of deleteFile(String filePathName)
static public boolean deleteFile(String filePathName)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { static public boolean deleteFile(String filePathName) { boolean success = (new File(filePathName)).delete(); return success; }// w w w . j a va 2 s. c o m }