Module ftp

ballerina/ftp
Overview
This module provides an FTP/SFTP client and an FTP/SFTP server listener implementation to facilitate an FTP/SFTP connection connected to a remote location.
FTP client
The ftp:Client
connects to an FTP server and performs various operations on the files. Currently, it supports the
generic FTP operations; get
, delete
, put
, append
, mkdir
, rmdir
, isDirectory
, rename
, size
, and
list
.
An FTP client is defined using the protocol
and host
parameters and optionally, the port
and
auth
. Authentication configuration can be configured using the auth
parameter for Basic Auth and
private key.
An authentication-related configuration can be given to the FTP client with the auth
configuration.
Create a client
The following code creates an FTP client and performs the I/O operations, which connect to the FTP server with Basic Auth.
Create a directory
The following code creates a directory in the remote FTP server.
Upload a file to a remote server
The following code uploads a file to a remote FTP server.
Compress and upload a file to a remote server
The following code compresses and uploads a file to a remote FTP server.
Get the size of a remote file
The following code gets the size of a file in a remote FTP server.
Read the content of a remote file
The following code reads the content of a file in a remote FTP server.
Rename/move a remote file
The following code renames or moves a file to another location in the same remote FTP server.
Delete a remote file
The following code deletes a remote file in a remote FTP server.
Remove a directory from a remote server
The following code removes a directory in a remote FTP server.
FTP listener
The ftp:Listener
is used to listen to a remote FTP location and trigger a WatchEvent
type of event when new
files are added to or deleted from the directory. The fileResource
function is invoked when a new file is added
and/or deleted.
An FTP listener is defined using the mandatory protocol
, host
, and path
parameters. The authentication
configuration can be done using the auth
parameter and the polling interval can be configured using the pollingInterval
parameter.
The default polling interval is 60 seconds.
The fileNamePattern
parameter can be used to define the type of files the FTP listener will listen to.
For instance, if the listener gets invoked for text files, the value (.*).txt
can be given for the config.
An authentication-related configuration can be given to the FTP listener with the auth
configuration.
Create a listener
The FTP Listener can be used to listen to a remote directory. It will keep listening to the specified directory and notify on file addition and deletion periodically.
Secure access with SFTP
SFTP is a secure protocol alternative to the FTP, which runs on top of the SSH protocol.
There are several ways to authenticate an SFTP server. One is using the username and the password.
Another way is using the client's private key. The Ballerina SFTP client and the listener support only those authentication standards.
An authentication-related configuration can be given to the SFTP client/listener with the auth
configuration.
Password-based authentication is defined with the credentials
configuration while the private key based authentication is defined with the privateKey
configuration.