We are currently encountering a problem with the synchronize method syncing files that are already on the server.
The files are identical in name and size, but are different in time stamp.
Because we decided that date/time isn't essential in our use-case we would use these FTPSyncRules
FTPSyncRules syncRules = new FTPSyncRules
{
FileNameFilter = filter,
DeleteIfSourceAbsent = true,
FilterOnServer = true,
IgnoreDate = true
};
Where the last property would ensure the date isn't taken into account.
Nevertheless it doesn't seem to change the fact it is syncing already synced files.
What else then the name, filesize and date/time stamp could be the issue?
Is there a way to trace the decision process of the sync method?