|
Synchronizing pre and post transfer commands
Question:
I've got pre/post command execution working, but I realized that FASTCopy moves on to the next phase immediately after issuing the command. Is there a way for FASTCopy to wait until the command has finished executing before it moves on to the following stage?
Answer:
To instruct FASTCopy to wait for the pre/post transfer command to finish executing before moving on, the following qualifiers can be used:
-local_pre_sync
Wait for local pre-command to complete with success before moving on. The script / batch file must exit with a status of 0 for it to be considered successful.
-local_sync
Wait for local post-command to complete with success before moving on. The script / batch file must exit with a status of 0 for it to be considered successful.
-remote_pre_sync
Wait for remote pre-command to complete with success before moving on. The script / batch file must exit with a status of 0 for it to be considered successful.
-remote_sync
Wait for remote post-command to complete with success before moving on. The script / batch file must exit with a status of 0 for it to be considered successful.
Related Topics:
WINDOWS
UNIX
Back to FAQ Index
|