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?
相关问题
- JavaScript File Transfer SSH
- Check whether the path exists on server or not in
- How to use VBA or Powershell to export lists from
- How to trigger a click on a chrome extension butto
- Android Google Drive Resumable Upload fails very o
相关文章
- Archive option greyed out in xcode 4.5.2
- Safari xhr drag'n'drop file upload seems t
- Reading data from Excel in Haskell
- React Native Uploading File in parts using XMLHttp
- Use RSA with Eclipse Remote Systems Explorer?
- What cause the error “Couldn't canonicalise: N
- Toad: 10.6: Seek clear instructions on automating
- Executing SFTP commands using Paramiko in Python
FileZilla does not have any command line arguments (nor any other way) that allow an automatic transfer.
Some references:
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:
A typical WinSCP script for upload (with SFTP) looks like:
With FTP, just replace the
sftp://
with theftp://
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.