@echo off
:11
set /p path=Please enter delete filepath:
del /f /s /q %path%
rd /q /s %path%
goto 11
pause

05-25 20:48