Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Created April 8, 2016 04:09
Show Gist options
  • Save vxhviet/a6a4df15f4dee039d913521206026c25 to your computer and use it in GitHub Desktop.
Save vxhviet/a6a4df15f4dee039d913521206026c25 to your computer and use it in GitHub Desktop.
How to delete a whole folder and content?

Source: StackOverflow

Question: How to delete a whole folder and content?

Answer: You can delete files and folders recursively like this:

void deleteRecursive(File fileOrDirectory) {
    if (fileOrDirectory.isDirectory())
        for (File child : fileOrDirectory.listFiles())
            deleteRecursive(child);

    fileOrDirectory.delete();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment