Here you can find the source of emptyFolder(File toEmpty)
private static void emptyFolder(File toEmpty)
//package com.java2s; // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt import java.io.File; public class Main { private static void emptyFolder(File toEmpty) { for (File current : toEmpty.listFiles()) { if (current.isDirectory()) { emptyFolder(current);//from w w w . j a va2 s . c o m } current.delete(); } } }