Here you can find the source of deleteFile(File f)
public static void deleteFile(File f)
//package com.java2s; import java.io.File; public class Main { public static void deleteFile(File f) { if (!f.exists()) return; boolean deleted = f.delete(); if (!deleted) throw new IllegalStateException("Could not delete file " + f); }// ww w . j a v a 2s.co m }