I'm using NcFTP to upload bunch of directories from a server to another (both linux) It succeed at creating, downloading, removing files/folders but failed when I need to overwrite them.
Could not preserve times for /path/logo/xxx.png: UTIME failed. server said: utime(/path/logo/xxx.png): Operation not permitted
So ok, remote server doesn't want me to set files timestamp I guess. Is there a workaround ? I've tried this :
ncftpput -R -o useSITE_UTIME=0 -u user -p mypwd www.site.com /remote/path/ /local/path/
But it doesn't work. Any idea is welcomed.