Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 4 years ago.
I would like to use FileZilla to automatically upload PDFs to my GoDaddy hosted site daily, replacing the previous day's sheets. Is there any way to do this? I read online that batch files might work, could someone post a sample version of a batch file that would do the trick?
FileZilla does not have any command line arguments (nor any other way) that allow an automatic transfer.
Some references:
- FileZilla Client command-line arguments
- https://trac.filezilla-project.org/ticket/2317
- How do I send a file with FileZilla from the command line?
Though you can use any other client that allows automation.
You have not specified, what protocol you are using. FTP or SFTP? You will definitely be able to use WinSCP, as it supports all protocols that FileZilla does (and more).
Combine WinSCP scripting capabilities with Windows Scheduler:
- Automate file transfers to FTP server or SFTP server;
- Schedule file transfers to FTP/SFTP server
A typical WinSCP script for upload (with SFTP) looks like:
open sftp://user:password@example.com/ -hostkey="ssh-rsa 2048 xxxxxxxxxxx...="
put c:\mypdfs\*.pdf /home/user/
close
With FTP, just replace the sftp://
with the ftp://
and remove the -hostkey="..."
switch.
WinSCP can even generate a script from an imported FileZilla session.
For details, see the guide to FileZilla automation.
(I'm the author of WinSCP)
Another option, if you are using SFTP, is the psftp.exe
client from PuTTY suite.