ftpclient 0.7.0 copy "ftpclient: ^0.7.0" to clipboard
ftpclient: ^0.7.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.

Pub Version GitHub license Build Status GitHub issues

Usage #

Add the following dependency to the pubspec.yaml

Stable

dependencies:
  ftpclient: ^0.7.0

Development

dependencies:
  ftpclient: ^0.8.0

NOTE: This version is not yet available on pub.dev

How to use the FTP Client:

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

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

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

Tested FTP Servers #

We have tested the lib with the following FTP Servers:

  • ProFTPd
12
likes
40
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

MIT (LICENSE)

Dependencies

path

More

Packages that depend on ftpclient