Files
2026-03-03 13:56:44 +08:00

19 lines
381 B
Batchfile
Raw Permalink 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
echo 清除所有obj pch idb pdb ncb opt plg res sbr ilk suo文件请稍等......
pause
del /f /s /q .\*.obj
del /f /s /q .\*.pch
del /f /s /q .\*.idb
del /f /s /q .\*.pdb
del /f /s /q .\*.ncb
del /f /s /q .\*.opt
del /f /s /q .\*.plg
del /f /s /q .\*.sdf
del /f /s /q .\*.sbr
del /f /s /q .\*.ilk
del /f /s /q .\*.aps
del /f /s /q .\*.ipch
echo 清除文件完成!
echo. & pause