tidy-html5/test/html5/cleanup.bat
2014-08-05 13:09:44 +02:00

24 lines
325 B
Batchfile

@setlocal
@set TMPCNT1=0
@if EXIST tempout (
@echo Cleaning and removing tempout folder...
@cd tempout
@del *.html >nul
@del *.txt >nul
@cd ..
@rd tempout
@set /A TMPCNT1+=1
)
@if EXIST temp* (
@echo Removing temp* file
@del temp* >nul
@set /A TMPCNT1+=1
)
@if "%TMPCNT1%x" == "0x" (
@echo Appears nothing to clean up!
)