Command-line arguments (Client): Difference between revisions
(Undo vandalism 14770 by 85.214.86.40 (talk)) |
mNo edit summary |
||
(48 intermediate revisions by 40 users not shown) | |||
Line 1: | Line 1: | ||
These are the command-line arguments for [[FileZilla FTP Client|FileZilla Client]]. The Server command-line arguments can be found under [[Command-line arguments (Server)]]. | These are the command-line arguments for [[FileZilla FTP Client|FileZilla Client]]. The Server command-line arguments can be found under [[Command-line arguments (Server)]]. | ||
If you are looking for a command-line version of FileZilla, check out [https://filezillapro.com/cli/ FileZilla Pro CLI]. | |||
== FileZilla Client command-line arguments == | == FileZilla Client command-line arguments == | ||
Line 10: | Line 11: | ||
filezilla -c, --site=<string> | filezilla -c, --site=<string> | ||
filezilla -l, --logontype=<string> | filezilla -l, --logontype=<string> | ||
filezilla -a, --local=<string> | |||
filezilla --close | filezilla --close | ||
filezilla --verbose | filezilla --verbose | ||
Line 64: | Line 66: | ||
FileZilla will ask for any logon information not supplied in the FTP URL before connecting. Useful for custom scripts or shortcuts. | FileZilla will ask for any logon information not supplied in the FTP URL before connecting. Useful for custom scripts or shortcuts. | ||
</blockquote> | </blockquote> | ||
*-a, --local=<string> | |||
<blockquote> | |||
Sets the local site (left-hand side) to the given path. '''(Requires version 3.7.1-rc1 or higher)''' | |||
<br /><br /> | |||
Use double quotation for paths with spaces in them. | |||
<br /><br /> | |||
Example: | |||
<pre>filezilla --site="0/site1" --local="C:\site1 downloads" | |||
filezilla ftp://username:password@ftp.example.com --local="C:\server2 downloads"</pre> | |||
Connects to the user site "site1" and sets the local folder to '''C:\site1 downloads'''. | |||
Connects to server2 URL and sets the local folder to '''C:\server2 downloads'''. | |||
</blockquote> | |||
*--close ''(Windows only)'' | *--close ''(Windows only)'' |
Latest revision as of 18:30, 6 March 2024
These are the command-line arguments for FileZilla Client. The Server command-line arguments can be found under Command-line arguments (Server). If you are looking for a command-line version of FileZilla, check out FileZilla Pro CLI.
FileZilla Client command-line arguments
Synopsis
filezilla [<FTP URL>] filezilla -h, --help filezilla -s, --site-manager filezilla -c, --site=<string> filezilla -l, --logontype=<string> filezilla -a, --local=<string> filezilla --close filezilla --verbose filezilla -v, --version
Options
- <FTP URL>
Accepts all URLs of the form
[protocol://][user[:pass]@]host[:port][/path] eg. sftp://username:password@server:portValid protocols are ftp:// (the default if omitted), ftps://, ftpes:// and sftp://
- -h, --help
Shows the help dialog.
- -s, --sitemanager
Start with opened Site Manager.
May not be used together with -c nor with URL parameter.
- -c, --site=<string>
Connect to specified Site Manager site.
Site name requirements:
- Site has to be given as complete path, with a slash as separation character.
- Any slash or backslash that is part of a segment has to be escaped with a backslash.
- Path has to be prefixed with 0 for user defined entries or 1 for default entries.
- Site path may not contain double quotation marks.
Example:filezilla --site="0/foo/bar/sl\/ash"Connects to the user site "sl/ash" in the site directory "foo/bar".
- -l, --logontype=(ask|interactive)
Logon type, can only be used together with FTP URL. Argument has to be either 'ask' or 'interactive'.
FileZilla will ask for any logon information not supplied in the FTP URL before connecting. Useful for custom scripts or shortcuts.
- -a, --local=<string>
Sets the local site (left-hand side) to the given path. (Requires version 3.7.1-rc1 or higher)
Use double quotation for paths with spaces in them.
Example:
filezilla --site="0/site1" --local="C:\site1 downloads" filezilla ftp://username:password@ftp.example.com --local="C:\server2 downloads"Connects to the user site "site1" and sets the local folder to C:\site1 downloads.
Connects to server2 URL and sets the local folder to C:\server2 downloads.
- --close (Windows only)
Closes all running instances of FileZilla.
- --verbose
Verbose log messages from wxWidgets.
- -v, --version
Print version information to stdout and exit.
Example
If you want to connect from the command-line to the site named Backup server in the directory foo/bar, the command is:
filezilla -c "0/foo\/bar/Backup server"