Top "Delete-directory" questions

Tag for questions regarding directory (folder) deletion.

How to recursively delete an entire directory with PowerShell 2.0?

What is the simplest way to forcefully delete a directory and all its subdirectories in PowerShell? I am using PowerShell …

windows powershell windows-7 filesystems delete-directory
Ansible: How to delete files and folders inside a directory?

The below code only deletes the first file it gets inside the web dir. I want to remove all the …

ansible delete-file delete-directory
How to delete a folder with files using Java

I want to create and delete a directory using Java, but it isn't working. File index = new File("/home/Work/…

java file-io delete-directory
Delete directories recursively in Java

Is there a way to delete entire directories recursively in Java? In the normal case it is possible to delete …

java file-io filesystems delete-directory
How to delete a whole folder and content?

I want the users of my application to be able to delete the DCIM folder (which is located on the …

android file-io directory delete-directory
In Unix, how do you remove everything in the current directory and below it?

I know this will delete everything in a subdirectory and below it: rm -rf <subdir-name> But how do …

bash unix directory subdirectory delete-directory
How to fix "containing working copy admin area is missing" in SVN?

I deleted manually a directory I just added, offline, in my repository. I can't restore the directory. Any attempt to …

svn repair delete-directory
How to delete directory content in Java?

After enumerating a directory, I now need to delete all the files. I used: final File[] files = outputFolder.listFiles(); files.…

java file-io delete-directory
How do I recursively delete a directory and its entire contents (files + sub dirs) in PHP?

How do I delete a directory and its entire contents (files and subdirectories) in PHP?

php recursion delete-directory
How to delete a folder in C++?

How can I delete a folder using C++? If no cross-platform way exists, then how to do it for the …

c++ delete-directory