kiran goud
kiran goud

Reputation: 843

How to retrieve file from FTP server in Flutter

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

Answers (1)

Mario Wojcik
Mario Wojcik

Reputation: 11

you can use SSH library

//Connect SFTP: #
  await client.connectSFTP();
//List directory: #
  var array = await client.sftpLs("/home");

Upvotes: 1

Related Questions