One of our readers recently asked a question with regards to deleting files and folders recursively using the command prompt.
I would like to delete all the folders and files in a folder. Like we have an option to delete all the files is "del *" but it will not work for deleting folders like "rmdir *"
The question is similar to a one asked to us earlier where a user wanted to know how to recursively delete certain file types from directories and sub directories using the command prompt.
However when it comes to deleting directories and subdirectories using the command prompt, the regular rmdirdoes not work with a wildcard.
In order to delete all files and folders recursively using the command prompt you will need to run the command;
rmdir /S directoryname
Replace directorynamewith the directory you want to delete.
Once you run the command you will be prompted whether you want to delete the files or not, if you do not want to see this prompt you can pass the /Q switch to the command, which will then run the command in non-verbose mode.
However you must note that files and folders deleted from the command prompt do not go to recycle bin, they are permanently deleted, so make sure that you really want to delete those files, however if you do delete those files accidentally you can use one of the free software to recover deleted files.


