files
SDK/Examples/GUI/SetCursor/init.bat

11 lines
197 B
Batchfile

@echo off
for %%f in ("%~dp0*.bmp") do (
if not exist "%~dp0..\..\..\Bin\%1\%%~nxf" (
echo Copying "%%f"
copy "%%f" "%~dp0..\..\..\Bin\%1" >nul
if errorlevel 1 goto exit
)
)
:exit