keep your codebase clean

This commit is contained in:
SandPoot
2023-02-19 14:21:05 -03:00

3
Delete empty folders.bat Normal file
View File

@@ -0,0 +1,3 @@
REM Instructions: Drop in root folder, all directories and
REM subdirectories will be purged of empty folders.
for /f "delims=" %%i in ('dir /s /b /ad ^| sort /r') do rd "%%i" 2>NUL