import java.io.File; public class Main { public static void main(String[] argv) throws Exception { boolean success = (new File("directoryName")).delete(); if (!success) { System.out.println("Deletion failed"); } } }