This Java File IO tutorial helps you write code to delete all files and sub directories and sub files in a given directory.

In Java, to remove a directory we can call delete() method on a File object, for example:

String dirPath = "D:/Dir/To/Remove";
File dir = new File(dirPath);
try {
    boolean deleted = dir.delete();
    if (deleted) {
        System.out.println("Directory removed.");
    } else {
        System.out.println("Directory could not be removed");
    }
} catch (SecurityException ex) {
    System.out.println("Delete is denied.");
}
However the delete() method is only working with an empty directory. What if the directory is not empty and contains several sub files and directories? Well, in that case, we have to iterate over all of the sub files/sub directories, delete every file in a sub directory until the directory becomes empty, and then delete the sub directory itself. And that involves in some sort of recursion algorithm.

 

Remove a non empty directory example:

The following static method:

    •           Recursively deletes sub files and sub directories.
    •           Delete the main directory.
 

    public static void removeDirectory(File dir) {
        if (dir.isDirectory()) {
            File[] files = dir.listFiles();
            if (files != null && files.length > 0) {
                for (File aFile : files) {
                    removeDirectory(aFile);
                }
            }
            dir.delete();
        } else {
            dir.delete();
        }
    }
 

Clean a non empty directory example:

Clean a directory does not delete the main directory but all sub files and directories, results in the main directory being empty:

    public static void cleanDirectory(File dir) {
        if (dir.isDirectory()) {
            File[] files = dir.listFiles();
            if (files != null && files.length > 0) {
                for (File aFile : files) {
                    removeDirectory(aFile);
                }
            }
        }
    }
Note that the cleanDirectory() method re-uses the removeDirectory() method.



You can download the demo program in the attachment section.

 

Related File IO Tutorials:

 

Other Java File IO Tutorials:


About the Author:

is certified Java programmer (SCJP and SCWCD). He started programming with Java in the time of Java 1.4 and has been falling in love with Java since then. Make friend with him on Facebook and watch his Java videos you YouTube.



Attachments:
Download this file (CleanRemoveDirDemo.java)CleanRemoveDirDemo.java[demo program for cleaning/removing non-empty directory]0.8 kB

Add comment

   


Comments 

#3Nam2015-11-30 21:23
Quoting Swami:
Hello,
In removeDirectory method do we need dir.delete() in two places, in both if and else block. It can be moved as last statement of the method, outside if.

I think no. the if clause is for a directory and the else clause is for a file.
Quote
#2Swami2015-11-25 02:47
Hello,
In removeDirectory method do we need dir.delete() in two places, in both if and else block. It can be moved as last statement of the method, outside if.
Quote
#1Tony2015-04-13 11:40
I try testing this code, it´s looking interesting
Quote