Command line option to download file in FileZilla

╄→гoц情女王★ 提交于 2019-12-01 07:41:35

FileZilla does not have any command line arguments (nor any other way) that allow automatic transfer.

See:
FileZilla Client command-line arguments
https://trac.filezilla-project.org/ticket/2317


Though you can use any other FTP client that allows automation.

FileZilla does support some basic command line options for the upload and download of files. Not all options are documented. You can download a file with the option "-d sourcefile targetdir"

Example (download):

filezilla.exe -d ftp://user:pass@ftp.myserver.com/folder/* "c:\downloads\" ​ /overwrite /close 

Example (upload):

filezilla.exe -u "c:\temp\samplefile.exe" ​ftp://user:pass@ftp.myserver.com/folder /overwrite /close 

/close -- will close the GUI after the download/upload completes

/overwrite -- will overwrite the files in target without prompting the user

You can also connect to a site from the site manager e.g. --site="0/site1".

Below are reference sites with further examples including download links to FileZilla versions (2.32 / 3.1) that supported the feature.

FAQ Link

FileZilla Download link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!