12

I want to upload files from my computer to an FTP site and I don't want to upload files that are already on the server. So I need a tool that finds out which local files that are different from the ones on the server, or that don't exists on the server.

Some requirements:

  • I'm using a cheap provider that does not support rsync or ssh, so I can only use FTP.

  • I generate the files before uploading them, so comparing timestamps is meaningless.

  • I've tried lftp with the mirror command. It's slow (I think it uploads all the files).

  • I upload the files from different computers, so I can't use sitecopy, which uses a local database to keep track of which files are on the server.

  • I'd like to be able to upload all changed files with one command. Preferably no GUI application. And it needs to run in Ubuntu.

I was thinking about creating a tool similar to sitecopy, but which stores checksums of all the files on the FTP server on the server itself. But then I thought that there may already be such a tool.

2

1 Answer 1

2

Have you tried filezilla?

Has a "Directory Comparison" feature that may be what you are looking for.

2
  • 1
    Uhm, this question is over 5 years old, and the OP hasn't been logged in to the site for over a year. Why try to revive this now? :P
    – Patrick
    Commented Jul 27, 2016 at 11:39
  • 1
    The question is not only of interest for the OP but also for others such as myself. Commented Nov 8, 2017 at 8:00

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .