Reputation: 843
I was trying to download files from FTP server to mobile devices but could not find any plugins to do so. How to connect devices to FTP Server and download the files using Flutter?
Upvotes: 0
Views: 2940
Reputation: 11
you can use SSH library
//Connect SFTP: #
await client.connectSFTP();
//List directory: #
var array = await client.sftpLs("/home");
Upvotes: 1