- I would like to compare the contents of three particular folders on two FTP servers. These three directories are all in a command directory call it F. The three particular directories are A, B and C.
- I would like to filter by some set of file extensions *.txt;*.bat;*.cmd;
- I would like to sync them such that if binary comparison is the same, then I sync the oldest time-stamp.
- I would like the sync to be fast by skipping binary comparison if the timestamp and file-size match. (i.e. GUI feature skip if Quick Tests indicate files are the same)
- I would like orphans to be sync'ed
- I would like to be prompted when the binary comparison fails for a given file.
load <default>
# Load the base folders.
load "ftp://servername1/F/A" "servername2/F/A"
filter "*.txt;*.bat;*.cmd;-*"
compare binary
option confirm-prompt
sync update:all
Comment