aki te pongo un ejemplo, le faltan unos detalles, es cosa de ajustarlo a tus necesitades
Código PHP:
/*
* Author: Crysfel Villa
* Created: Monday, August 08, 2005 10:32:17 PM
* Modified: Monday, August 08, 2005 10:32:17 PM
*/
import java.io.*;
public class BorrarDirectorio
{
public static void main( String [] args ) throws IOException
{
File f = new File("c:/myDirectorio");
if(f.exists()){
if(f.delete())
System.out.println("Borrado con exito :)");
else
System.out.println("Se ocaciono un error al borrar el directorio :(");
}else{
System.out.println("El directorio no existe :(");
}
}
}