1
0
Fork 0
x64dbg/x64_dbg_gui/Project/CopyBinaries.bat

26 lines
278 B
Batchfile

@echo off
:: Flag reset when a file has been found and copied
set flag=1
copy %1.a %2 /y
if %ERRORLEVEL%==0 (
set flag=0
)
copy %1.exe %2 /y
if %ERRORLEVEL%==0 (
set flag=0
)
copy %1.dll %2 /y
if %ERRORLEVEL%==0 (
set flag=0
)
exit /b %flag%