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

SFTP Debug Log File Path

See more SFTP Examples

Demonstrates how to use the DebugLogFilePath property to get information if a Chilkat method crashes or hangs.

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.SFtp;

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

procedure RunDemo;
var
  success: Boolean;
  sftp: TSFtp;
  remoteFilePath: string;
  localFilePath: string;

begin
  success := False;

  sftp := TSFtp.Create;

  //  Insert this code just before the method call that crashes or hangs.
  sftp.VerboseLogging := True;
  sftp.DebugLogFilePath := '/some/file/path/sftp_debug_log.txt';

  //  Make the call that crashes or hangs,
  //  for example, if the method is DownloadFileByName:

  remoteFilePath := '...';
  localFilePath := '...';
  success := sftp.DownloadFileByName(remoteFilePath,localFilePath);

  //  Note: If the method returns control to your application code, then it did not crash within Chilkat.
  //  The DebugLogFilePath property causes all information that would be recorded in the LastErrorText to be emitted to the
  //  log file (with immediate file write flushing, i.e. no buffering).  Thus, in a crash situation,
  //  the log file will contain information up to the point of the crash.

  if (success = False) then
    begin
      WriteLn(sftp.LastErrorText);
      Exit;
    end;


  sftp.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.