Files
user-system/cleanup.bat

24 lines
388 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
REM 清理D:\project目录下的临时文件
REM 运行方式把此文件放到D:\project目录双击运行
echo 正在清理临时文件...
REM 删除txt临时文件
del /Q *.txt 2>nul
REM 删除bat脚本
del /Q *.bat 2>nul
REM 删除sh脚本
del /Q *.sh 2>nul
REM 删除ps1脚本
del /Q *.ps1 2>nul
REM 删除py脚本
del /Q *.py 2>nul
echo 清理完成!
pause