Here you can find the source of delDirAndFile(String tempath)
public static void delDirAndFile(String tempath)
//package com.java2s; import java.io.File; public class Main { public static void delDirAndFile(String tempath) { File f = new File(tempath); if (f.isDirectory()) { File[] l = f.listFiles(); for (int i = 0; i < l.length; i++) { delDirAndFile(l[i].getAbsolutePath()); }/*from w ww.j av a 2s . c om*/ } f.delete(); } }