Ich möchte in meinem Projekt ein "Post-Build-Ereignis" haben: Ich möchte bestimmte Dateien von A nach B kopieren lassen.
Ich dachte an das Windows-Tool ROBOCOPY:
Code:
robocopy c:\someDir\ c:\someOtherDir\ *.txt /Lev:3 /A-:SH
(so ungefähr).
Problem: RoboCopy gibt als Returncode eine 1 für "
All files were copied successfully." zurück. Der Delphi Kompilierungsvorgang bricht dann ab mit
Code:
[Exec Fehler] Der robocopy c:\someDir\ c:\someOtherDir\ *.txt /Lev:3 /A-:SH-Befehl wurde mit Code 1 beendet.
.
Wie kann ich einstellen, dass ich mit Returncode 0 und 1 zufrieden bin?