Skip to main content

FTP Connector

FTP The FTP (File Transfer Protocol) component allows uploading, downloading, moving and deleting files on an FTP server.

Connections

Basic Authentication

Authenticate using username and password

This component supports basic authentication, meaning that a username and password can be entered for authentication, or if the FTP server allows anonymous access, those values can be left blank.

Prerequisites

  • An FTP or FTPS server with accessible credentials
  • Server hostname or IP address
  • Port number (typically 21 for FTP or 990 for FTPS)
  • SSL/TLS configuration details (if using FTPS)

Configure the Connection

Create a connection of type Basic Authentication and configure the following:

  • Username: Enter the FTP username (leave blank for anonymous access)
  • Password: Enter the FTP password (leave blank for anonymous access)
  • Host: You can enter either an IP address (e.g. 1.2.3.4) or FQDN (e.g. ftp.example.com) for the FTP's host name
  • Port: Most FTP servers run on port 21 and most FTPS (secure) servers run on port 990, though ports are configurable and server administrators can choose to operate on different ports
  • Secure: Some FTP servers are secure (indicating that they use FTPS rather than FTP). If you are using plain, unsecured FTP select false for secure (though, we recommend encrypting your connection if possible). If your FTP server is set up to use SSL/TLS, you can select true (meaning use "explicit" FTPS) or implicit to use "implicit" FTPS. For information on "implicit" and "explicit" FTPS, see this documentation

If the connection fails, verify the hostname, port and security information with the server administrator.

InputCommentsDefault
UsernameThe username for FTP authentication.
PasswordThe password for FTP authentication.
HostThe address of the FTP server. This should be an IP address or hostname.
PortThe port of the FTP server. Default is 21 for FTP or 990 for implicit FTPS.21
SecureWhether to use FTPS over TLS. Set to 'true' for explicit FTPS, 'false' for plain FTP, or 'implicit' for legacy implicit FTPS.false
Ignore SSL ErrorsWhen true, ignores SSL certificate validation errors such as self-signed certificates.false

Triggers

New or Modified Files

Checks for new and modified files in a directory on an FTP server on a configured schedule.

InputCommentsDefault
Connection
Verbose LoggingEnables verbose logging for debugging purposes.false
PathPath of directory on FTP server to monitor for new or modified files.
PatternGlob-style string for filtering specific files.*
Include SubdirectoriesWhen true, recursively monitors files in all subdirectories. When false, only monitors files in the specified directory.false

Actions

Delete File

Deletes a file from an FTP server.

InputCommentsDefault
Connection
Verbose LoggingEnables verbose logging for debugging purposes.false
PathThe full path of the file on the FTP server to delete.

List Directory

List the contents of a directory

InputCommentsDefault
Connection
Verbose LoggingEnables verbose logging for debugging purposes.false
PathThe full path of the directory on the FTP server to list.

Move File

Moves a file on an FTP server.

InputCommentsDefault
Connection
Verbose LoggingEnables verbose logging for debugging purposes.false
Source PathThe current path of the file on the FTP server to move.
Destination PathThe new path where the file will be moved on the FTP server.

Read File

Reads a file from an FTP server.

InputCommentsDefault
Connection
Verbose LoggingEnables verbose logging for debugging purposes.false
PathThe full path of the file on the FTP server to read.

Write File

Writes a file to an FTP server.

InputCommentsDefault
Connection
Verbose LoggingEnables verbose logging for debugging purposes.false
PathThe full path on the FTP server where the file will be written.
DataThe text or binary data to write to the file on the FTP server.