Sample code for 30+ languages & platforms
Dart

Append Text to a Remote FTP File (StringBuilder)

See more FTP Examples

Demonstrates the Chilkat Ftp2.AppendFileSb method, which encodes the text in a StringBuilder and appends the bytes to a remote file. The arguments are the remote filename, the StringBuilder, and the charset.

Background: When you have accumulated several lines or records in a StringBuilder, this appends them to a remote file in one call, encoding as it writes. It pairs naturally with building up text in memory and flushing it to a remote log periodically.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // Demonstrates the Ftp2.AppendFileSb method, which encodes the text in a StringBuilder and
  // appends the bytes to a remote file.  The 1st argument is the remote filename, the 2nd is the
  // StringBuilder, and the 3rd is the charset.

  final ftp = CkFtp2();

  ftp.hostname = 'ftp.example.com';
  ftp.username = 'myFtpLogin';

  // Normally you would not hard-code the password in source.  You should instead obtain it
  // from an interactive prompt, environment variable, or a secrets vault.
  ftp.password = 'myPassword';

  try {
    ftp.connect();
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final sb = CkStringBuilder();
  sb.append('appended line one\n');
  sb.append('appended line two\n');

  try {
    ftp.appendFileSb('logs/app.log', sb, 'utf-8');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print('Appended text.');

  try {
    ftp.disconnect();
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }
}