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.
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 ↓
for /F “tokens=*” %f in (’dir /AD /S /B^|sort /R’) do echo rd “%f”
Leave a Comment