How to delete files/subfolders in a specific directory at the command prompt in Windows How to delete files/subfolders in a specific directory at the command prompt in Windows windows windows

How to delete files/subfolders in a specific directory at the command prompt in Windows


rmdir is my all time favorite command for the job. It works for deleting huge files and folders with subfolders. A backup is not created, so make sure that you have copied your files safely before running this command.

RMDIR "FOLDERNAME" /S /Q

This silently removes the folder and all files and subfolders.


You can use this shell script to clean up the folder and files within C:\Temp source:

del /q "C:\Temp\*"FOR /D %%p IN ("C:\Temp\*.*") DO rmdir "%%p" /s /q

Create a batch file (say, delete.bat) containing the above command. Go to the location where the delete.bat file is located and then run the command: delete.bat


The simplest solution I can think of is removing the whole directory with

RD /S /Q folderPath

Then creating this directory again:

MD folderPath