Here you can find the source of deleteDir(File file)
public static void deleteDir(File file)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static void deleteDir(File file) { if (file.isDirectory()) { for (File child : file.listFiles()) { deleteDir(child);//w w w . ja v a2 s . c om } } file.delete(); } }