Reputation: 22611
I need to develop a file synchronization application to sync my files from my local computer to my remote server. My local OS is windows and remote OS is Unix. I can access files on the remote on FTP.
Is file's 'modified date' enough to find out files that has been changed on my computer?
Upvotes: 0
Views: 94
Reputation: 122769
You might want to try rsync
, which comes with most Linux distributions, and for which there seems to be a Windows version: http://greenmice.info/en/node/34
Upvotes: 0
Reputation: 33197
Maybe, but why reinvent the wheel?
Unison, lftp (for FTP only) or rsync have solved these issues awhile ago.
Upvotes: 1