WindowsXP-SP1/admin/admt/buildtools/deletetempfiles.cmd
2020-09-30 16:53:49 +02: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