ftpclient 0.4.0 copy "ftpclient: ^0.4.0" to clipboard
ftpclient: ^0.4.0 copied to clipboard

discontinuedreplaced by: ftpconnect
outdated

A simple dart FTP Client Library to interact with FTP Servers

A small and simple FTP Client library for Dart Native.

Build Status

Usage #

Add the following dependency to the pubspec.yaml

dependencies:
  ftpclient: ^0.4.0

How to use the FTP Client:

import 'dart:io';
import 'package:ftpclient/ftpclient.dart';

main() {
  FTPClient ftpClient = new FTPClient('example.com', user: 'myname', pass: 'mypass');
  ftpClient.connect();
  ftpClient.uploadFile(new File('test.zip'));
  ftpClient.disconnect();
}

For a complete example, see the examples in the example folder!

12
likes
0
pub points
68%
popularity

Publisher

verified publishernexific.com

A simple dart FTP Client Library to interact with FTP Servers

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

path

More

Packages that depend on ftpclient