flutter_ftp_client 1.0.6 copy "flutter_ftp_client: ^1.0.6" to clipboard
flutter_ftp_client: ^1.0.6 copied to clipboard

discontinued
outdated

A simple plugin to acess FTP for Android.

flutter_ftp_client #

This plugin provide an simple API to FTP acess, Common-net-3.6 based. Currently only available for android platform.

Getting Started #

Config host #

First provide the host config

  FlutterFtpClient.configHost(host, username, password, port);

Config path #

Config the path and filename from download.

FlutterFtpClient.configFilePath(path, filename, extension,
        uploadPath: uploadPath);

Download File #

The method getFile execute the download of file and return your filename. Use the filename to manipulate the file in your app.

   String filename = await FlutterFtpClient.getFile;

Upload File #

The method uploadFile execute the upload of file to server. Use the uploadFile to manipulate the file in your app.

    // Set destination path
    configFilePath(path, filename,
            extension: extension, uploadPath: uploadPath);

    /// Execute o upload file
    return FlutterFtpClient.uploadFile;
2
likes
0
pub points
36%
popularity

Publisher

unverified uploader

A simple plugin to acess FTP for Android.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_ftp_client