OSDN Git Service

Initial commit
[wordring-tm/wordring-tm.git] / third_party / tidy-html5-master / test / html5 / cleanup.bat
1 @setlocal
2 @set TMPCNT1=0
3 @if EXIST tempout (
4 @echo Cleaning and removing tempout folder...
5 @cd tempout
6 @del *.html >nul
7 @del *.txt >nul
8 @cd ..
9 @rd tempout
10 @set /A TMPCNT1+=1
11 )
12
13 @if EXIST temp* (
14 @echo Removing temp* file
15 @del temp* >nul
16 @set /A TMPCNT1+=1
17 )
18
19 @if "%TMPCNT1%x" == "0x" (
20 @echo Appears nothing to clean up!
21 )
22
23