windows-nt/Source/XPSP1/NT/admin/admt/buildtools/deletetempfiles.cmd
2020-09-26 16:20:57 +08:00

20 lines
328 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