mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-21 02:30:07 +02:00
11 lines
197 B
Batchfile
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 |