Schedule a transfer with Filezilla

fabien350 -  
 Leonick -
Hello,

I want to schedule my file uploads to my FTP server using Filezilla. Is that possible?

Thank you in advance
Configuration: Windows XP Firefox 2.0.0.12

2 answers

  1. fmvgld Posted messages 118 Status Member 9
     
    Hello

    Why not use a batch and the task scheduler??
    1
    1. fabien350
       
      uh....yes it would probably be good but I don't know what command line to put.
      0
      1. fmvgld Posted messages 118 Status Member 9 > fabien350
         
        I built it like this and it works now, there may be other solutions.
        2 files, one .bat
        ftp -n -s:<file.inf> <your ftp server address>

        one .inf

        user <ftp user> <user password>
        cd /www/intranet (I go to the www/intranet directory located at the root of my ftp server)
        get <local file> <remote file> (to receive a file)
        or
        put <local file> <remote file> (to send a file)
        quit

        there you go, to adapt for multiple files or directories

        hoping to have helped you

        enjoy
        0
      2. fabien350 > fmvgld Posted messages 118 Status Member
         
        It works. Thank you very much ;)
        0
  2. Leonick
     
    Except that with FTP, unlike Filezilla, you cannot choose to copy only the more recent files. Everything is copied completely, overwriting existing versions, whether they are newer or not.
    0