@echo off
set e=0
:a
if %e% equ 100 exit
set a=%time:~-1%
set b=%time:~9,1%
set c=%time:~7,1%
ping -n 1 127.0.1>nul
if %a% neq 5 (goto b) else (goto a)
:b
if %b% neq 5 (goto c) else (goto a)
:c
if %c% neq 5 (goto d) else (goto a)
:d
if exist %a%%b%%c% (goto a) else (echo.正在创建:%a%%b%%c%&md %a%%b%%c%)
set /a e=%e%+1
goto a