mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
328 B
19 lines
328 B
@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
|