Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using folder content in code, and then I would like to delete its contents I used :

final File[] files = outputFolder.listFiles();
files.delete();

but this has not delete folder ?

share|improve this question
11  
Does it even compile? you are calling delete on array. – Alpedar Oct 14 '11 at 13:11

7 Answers

You have to do this for each File:

public static void deleteFolder(File folder) {
    File[] files = folder.listFiles();
    if(files!=null) { //some JVMs return null for empty dirs
        for(File f: files) {
            if(f.isDirectory()) {
                deleteFolder(f);
            } else {
                f.delete();
            }
        }
    }
    folder.delete();
}

Then call

deleteFolder(outputFolder);
share|improve this answer
+1. However, the last line should be outputFolder.delete() instead of output.delete(). – spork Oct 14 '11 at 13:16
I tried it but when I open browser, folder is still here and contains all files... – lola Oct 14 '11 at 13:18
3  
Wont work if one of the files is a non empty directory. You have to delete directory contents recursively. if(f.isDirectory())myDelete(f) – josefx Oct 14 '11 at 13:20
Your're right, changed the code – NCode Oct 14 '11 at 13:37
I got nullPointerExcpetion on for(File f: files) { – lola Oct 14 '11 at 13:44
show 1 more comment

To delete folder having files , no need of loops or recursive search. You can directly use:

FileUtils.deleteDirectory(<File object of directory>);

This function will directory delete the folder and all files in it.

Easy pie :)

share|improve this answer
3  
i guess you mean the commons-io method: org.apache.commons.io.FileUtils.deleteDirectory(File) – cproinger Sep 11 '12 at 9:34
1  
Almost there! The question was how to delete the folder's content (not the filter itself) - commons-io has a method for that as well: FileUtils.cleanDirectory(File); – daniel Mar 23 at 22:09

You can't delete on an array ! This should work better :

for (File f : files) f.delete();

But it won't work if the folders are not empty. For this cases, you will need to recursively descend into the folder hierarchy and delete everything. Yes it's a shame Java can't do that by default...

share|improve this answer

You can't delete an File array. As all of the other answers suggest, you must delete each individual file before deleting the folder...

final File[] files = outputFolder.listFiles();
for (File f: files) f.delete();
outputFolder.delete();
share|improve this answer

All files must be delete from the directory before it is deleted.

There are third party libraries that have a lot of common utilities, including ones that does that for you:

share|improve this answer
for(File f : files) {
    f.delete();
}    
files.delete(); // will work
share|improve this answer

Use FileUtils with FileUtils.deleteDirectory();

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.