Script to Delete all Empty Folders

for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"

(if used inside a batch file, replace %d with %%d)

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...