SourceCode/PROMS/DevelopmentCopyFormats.bat

13 lines
320 B
Batchfile

@ECHO OFF
xcopy C:\Development\Proms\Formats\fmtall\. "c:\development\PROMS FORMATS\fmtall" /Y
if ERRORLEVEL 1 GOTO :OOPS
xcopy c:\Development\Proms\Formats\genmacall\. "c:\development\PROMS FORMATS\genmacall" /Y
if ERRORLEVEL 1 GOTO :OOPS
timeout /T 10
goto :done
:oops
Echo Could not copy formats
Pause
:done
@ECHO ON