WindowsXP/admin/admt/buildtools/deletetempfiles.cmd
2025-04-27 07:49:33 -04:00

20 lines
347 B
Batchfile

@echo off
setlocal enableextensions
set ROOTDIR=%1
if '%ROOTDIR%' == '' goto Usage
del /q /s /f %ROOTDIR%\*.pch >nul
del /q /s /f %ROOTDIR%\*.sbr >nul
del /q /s /f %ROOTDIR%\*.bsc >nul
del /q /s /f %ROOTDIR%\*.scc >nul
del /q /s /f %ROOTDIR%\*.ilk >nul
goto End
:Usage
echo Usage: DeleteTempFiles.cmd RootDir
:End
endlocal