1@echo off
2
3if "%1" == "" goto :end
4if exist "%1" rmdir /s /q "%1"
5
6:end
7