/ Published in: DOS Batch
URL: http://neps.in/2008/02/01/cleaningup-empty-folders-in-windows/
Expand |
Embed | Plain Text
REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ REM REM FILENAME : GETDIRS.BAT REM REM DESCRIPTION : GENERATE LIST OF FOLDERS RECURSIVELY IN A FILE "TOEMPTY.BAT" REM REM AUTHOR : Napoleon Arouldass S. http://neps.in REM REM DATE WRITTEN : Tuesday, August 21, 2007 10:37:25 PM REM REM COMMENTS/REMARKS : This is the first step REM REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ REM GET DIRECTORY LISTING OF WINDOWS FILE SYSTEM REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments
Subscribe to comments
You need to login to post a comment.

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