postbuidscriptdir_scripte/CopyData.bat
Hoeglinger Eugen 2655a9676d Initialize
- Postbuilt Scripte für Visual Studio und NX Open
2022-02-28 17:45:36 +01:00

21 lines
856 B
Batchfile

@echo off
rem ****************************************************************************
rem *** History ***
rem ****************************************************************************
rem *** Version 1.0 - 2022-01-27 - Eugen Hoeglinger
rem - Initially created
rem *** Version 1.1 -
rem ****************************************************************************
echo.
echo Copy data:
rem Copy data
if "1"=="0" (
mkdir "%TARGET_DIR%" >nul 2>&1
xcopy /I/F/Y "$(TARGET_DIRPath)" "%TARGET_DIR%\application\" | find /v /i "copied"
xcopy /I/F/Y "$(TARGET_DIRDir)\BlockStyler\*.*" "%TARGET_DIR%\application\" | find /v /i "copied"
xcopy /I/F/Y "$(TARGET_DIRDir)\images\*.*" "%TARGET_DIR%\application\" | find /v /i "copied"
@echo Files copied to "%TARGET_DIR%" !
)