Delete empty folders in Windows with a single command

A follow-up to my previous post, I found this nifty little article in PCMAG which shows you a way to delete empty folders  with a single command. No software required to be downloaded…

Read it here.

1 comment so far ↓

#1 Elliott Lewis on 07.14.08 at 6:42 pm

for /F “tokens=*” %f in (’dir /AD /S /B^|sort /R’) do echo rd “%f”

Leave a Comment