You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
436 B
21 lines
436 B
@echo off
|
|
cls
|
|
|
|
set directories= bin, obj, logs, node_modules
|
|
set /a count = 0
|
|
|
|
echo Deleting all following directories:
|
|
for %%d in (%directories%) do echo %%d
|
|
echo.
|
|
|
|
for /d /r . %%d in (%directories%) do if exist "%%d" (
|
|
echo. Deleting: %%d
|
|
rd /s/q "%%d"
|
|
set /a count += 1
|
|
)
|
|
|
|
echo.
|
|
echo The specified directories were successfully scanned.
|
|
echo Number of deleted directories: %count%
|
|
echo Press any key to exit.
|
|
pause > nul
|
|
|