SFTP
Requires the SFTP integration to be set up
// get connection
const client = await libs.sftp.get().connect();
// list directory content
const ls = await client.list('/some/remote/folder');
// to close connection
client.end();
Last modified 2yr ago