Completely delete a folder in Windows using command line
I need to delete one folder containing other folders and files inside. I tried del
and rmdir
commands but sometimes they fail with some error lines: [PATH]: The directory isn't empty.
Is there any good alternative?
Solution 1:
This happens to me a lot with my automated build scripts.
I guess the reason might be some application that has a file open in that directory with "share delete". I.e. the application allows a deletion of the file (which is why I figure the DeleteFile call doesn't fail), but the file will only disappear after said application has closed it's handle.
That means the file might still be there when the rmdir
command tries to delete the folder, hence the error message. Soon after that, said application will close it's handle, the file will disappear, and when you inspect the folder to see which file rmdir
was talking about it will be empty.
At least that's my theory.
The workaround proposed by Harry Johnston looks good. Only I would insert a pause in between the rmdir
commands. Of course Windows has no easily scriptable "pause" command (correction: ancient Windows versions don't, newer have - see comments). But if seconds granularity is enough one can use ping
to create a pause:
ping -n {desired_delay_in_seconds + 1} 127.0.0.1 >nul
So in total:
rd /s /q foo
:: retry once
if exist foo (
:: clear errorlevel
cmd /c
:: pause
ping -n 2 127.0.0.1 >nul
:: retry
rd /s /q foo
)
:: retry yet again
if exist foo (
cmd /c
ping -n 2 127.0.0.1 >nul
rd /s /q foo
)
:: give up
if exist foo {panic}
Solution 2:
Try:
rmdir /S your_directory
or:
rmdir /S /Q your_directory
to skip confirmation messages.
Solution 3:
You may have some readonly files, you can use the del /F option to get rid of them using
del /S /F your_directory
rmdir your_directory
You could also have some hidden files and if you are really sure you want to delete them, then you can do this using
del /S /F /AH your_directory
rmdir your_directory
If this still fails, then either you do not have permission to delete some files, or some of the files are still in use.
Solution 4:
I believe there's a bug in Windows 7 (and perhaps other versions) which sometimes causes this symptom; or it might be a bug in third-party software. (Do you have Symantec Endpoint Protection installed by any chance?)
Anyway, I've run across it fairly often. In most cases, the problem can be worked around by running rd /s /q
two or three times in a row.
If this is in a batch file, you can do something like this:
rd /s /q foo
if exist foo rd /s /q foo
if exist foo rd /s /q foo
if exist foo echo Help! & pause
Solution 5:
Use del
on the files inside, then rmdir
to remove the folder.
To use the rmdir
method to remove all the files as well, use the /S
switch before the directory name, and /Q
to suppress prompting for deleting. This is the best way to do it, as you don't miss any files whatsoever. Be careful using the /Q switch though, as it will not warn you of System or Hidden file attributes