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.
17 lines
308 B
17 lines
308 B
@echo off
|
|
if "%1"=="" goto :usage
|
|
if "%2"=="" goto :usage
|
|
|
|
set _TEMPLATE_PATH=%1
|
|
set _TARGET_FILE=%2
|
|
|
|
rem
|
|
rem scan all regular files
|
|
rem
|
|
|
|
dir /s /b /AH /A-D %_TEMPLATE_PATH%\*.* | find /V /I "dllcache" > %_TARGET_FILE%
|
|
|
|
goto :eof
|
|
|
|
:usage
|
|
echo "Usage: maketmpl <templatepath> <templatefile>"
|