Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
Connect and Log In to an FTP Server
See more FTP Examples
Demonstrates the Chilkat Ftp2.Connect method, which connects to the server and authenticates in a single call. It takes no arguments and uses the Hostname, Port, Username, and Password properties.
Background:
Connect is the one-call path that covers the whole handshake: it opens the TCP connection (through any configured proxy), negotiates TLS if enabled, reads the server greeting, and sends USER/PASS to log in. For most applications this is all that is needed. Use ConnectOnly plus LoginAfterConnectOnly instead when you need to do something between connecting and authenticating — such as inspecting the greeting or choosing credentials based on it.Chilkat Pascal (Lazarus/Delphi) Downloads
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;
// Demonstrates the Ftp2.Connect method, which connects to the server and authenticates in one
// call. It takes no arguments and uses the Hostname, Port, Username, and Password properties.
ftp := TFtp2.Create;
// The FTP server to connect to. Port defaults to 21 for FTP.
ftp.Hostname := 'ftp.example.com';
ftp.Port := 21;
// The login credentials.
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';
// Connect negotiates any configured proxy and TLS, receives the greeting, and logs in.
success := ftp.Connect();
if (success = False) then
begin
WriteLn(ftp.LastErrorText);
Exit;
end;
WriteLn('Connected and logged in.');
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.