4G_module/tools/scripts/clean.bat

14 lines
177 B
Batchfile
Raw Normal View History

2024-09-02 17:54:29 +08:00
::created by xgl,2019/1/24
@if %1 == 1 (goto DELFILE)
:DELDIR
@echo delete folder
@rd /s /q %2 > nul 2>nul
@goto end
:DELFILE
@echo delete file
@del /q %2 > nul 2>nul
:end