Sample code for 30+ languages & platforms
Pascal (Lazarus/Delphi)

Monitor FTP Transfer Progress

See more FTP Examples

Demonstrates the progress properties CurBytesReceived, CurBytesReceivedStr, CurBytesSent, CurBytesSentStr, ProgressMonSize, PercentDoneScale, and AutoGetSizeForProgress.

Note: The local paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.

Background: Percentage progress needs a known total, but FTP does not always report a file's size up front — so AutoGetSizeForProgress issues a SIZE command before a download, and ProgressMonSize supplies an expected size when even that is unavailable (a one-shot value consumed by the next transfer). PercentDoneScale sets the resolution of progress callbacks. The current byte counts are exposed both as 32-bit integers and as strings, the string forms avoiding integer-width limits for very large transfers.

Chilkat Pascal (Lazarus/Delphi) Downloads

Pascal (Lazarus/Delphi)
program ChilkatDemo;

// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.

{$IFDEF FPC}
  {$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  SysUtils,
  CkDllLoader,
  Chilkat.Ftp2;

// ---------------------------------------------------------------------------

procedure RunDemo;
var
  success: Boolean;
  ftp: TFtp2;

begin
  success := False;

  ftp := TFtp2.Create;

  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';

  success := ftp.Connect();
  if (success = False) then
    begin
      WriteLn(ftp.LastErrorText);
      Exit;
    end;

  //  AutoGetSizeForProgress sends a SIZE command before a download so percentage-based progress can
  //  be computed.
  ftp.AutoGetSizeForProgress := True;

  //  PercentDoneScale sets the value representing one hundred percent in PercentDone callbacks.
  //  1000 gives tenth-of-a-percent resolution.
  ftp.PercentDoneScale := 1000;

  //  ProgressMonSize is a one-shot expected size for the next download when the size is not
  //  otherwise known.  It is consumed by the next download and reset to 0.
  ftp.ProgressMonSize := 20485760;

  success := ftp.GetFile('public_html/bigfile.zip','qa_output/bigfile.zip');
  if (success = False) then
    begin
      WriteLn(ftp.LastErrorText);
      Exit;
    end;

  //  After a transfer, the current byte counts are available as 32-bit numbers or as strings (the
  //  string forms avoid integer-size limits).
  WriteLn('Bytes received: ' + ftp.CurBytesReceived);
  WriteLn('Bytes received (str): ' + ftp.CurBytesReceivedStr);
  WriteLn('Bytes sent: ' + ftp.CurBytesSent);
  WriteLn('Bytes sent (str): ' + ftp.CurBytesSentStr);

  success := ftp.Disconnect();
  if (success = False) then
    begin
      WriteLn(ftp.LastErrorText);
      Exit;
    end;


  ftp.Free;

end;

// ---------------------------------------------------------------------------

begin

  try
    RunDemo;
  except
    on E: Exception do
      WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
  end;

  WriteLn;
  {$IFDEF MSWINDOWS}
  WriteLn('Press Enter to exit...');
  ReadLn;
  {$ENDIF}
end.