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 ?
|
I'm using folder content in code, and then I would like to delete its contents I used :
but this has not delete folder ? |
|||||
|
|
You have to do this for each File:
Then call
|
|||||||||||||
|
|
To delete folder having files , no need of loops or recursive search. You can directly use:
This function will directory delete the folder and all files in it. Easy pie :) |
|||||||||
|
|
You can't delete on an array ! This should work better :
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... |
|||
|
|
|
You can't delete an
|
|||
|
|
|
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: |
|||
|
|