I am facing an issue which I cannot understand, maybe someone can explain it or even provide hints to solve it.
I am using a script to synchronize 2 directories. The transfer is done by FTP. Usually, the script works.
Now, the transfer of a particularly big file failed due to some connection issues. In this post, I shall not dive into the questions as to why the transfer was not resumed. The important part is that I have now my source folder with the original file (appr. 130 GByte) and the destination folder with the half-transferred file (appr. 67 GByte). When I re-run my script, the
synchronize
command does see both files, but it then says "Nothing to synchronize".
The script looks like this:
synchronize -delete -criteria=either -transfer=binary -resumesupport=on remote "\\backup\backup3\Daily Backups\" "/Daily Backups/"
The log file shows these lines:
> 2020-05-16 12:12:07.874 Script: synchronize -delete -criteria=either -transfer=binary -resumesupport=on remote "\\backup\backup3\Daily Backups\" "/Daily Backups/"
. 2020-05-16 12:12:07.881 Local file '\\backup\backup3\Daily Backups\Backup Falkoner 20200515-2001 (Full).zip' [2020-05-16T06:00:13.440Z] [134488124425] included to synchronization
. 2020-05-16 12:12:08.043 modify=20200516081238;perm=adfrw;size=67285202230;type=file;unique=900U3240007;UNIX.group=100;UNIX.mode=0666;UNIX.owner=501; Backup Falkoner 20200515-2001 (Full).zip
. 2020-05-16 12:12:08.088 Remote file '/Daily Backups/Backup Falkoner 20200515-2001 (Full).zip' [2020-05-16T08:12:38.000Z] [67285202230] is modified comparing to local file '\\backup\backup3\Daily Backups\Backup Falkoner 20200515-2001 (Full).zip' [2020-05-16T06:00:13.440Z] [134488124425]
< 2020-05-16 12:12:08.089 Script: Nothing to synchronize.
When I try synchronization from the GUI, the result is the same.
Why is the file file skipped, even though the file size is different, and the file size should be checked as a criteria for transfer?