Sample code for 30+ languages & platforms
Delphi ActiveX

Get a Raw Text Directory Listing (LIST)

See more FTP Examples

Demonstrates the Chilkat Ftp2.GetTextDirListing method, which sends a legacy LIST request and returns the server's raw textual listing. The only argument is appended literally as a server-side listing argument; an empty string lists the current remote directory.

Background: This returns exactly what the server's LIST command produces — usually a Unix ls -l-style block, but the format is server-defined and not standardized. That makes it handy for display or debugging, but fragile to parse; prefer GetXmlDirListing or the index-based accessors when you need structured data. Since the argument is appended literally to LIST, it can carry server-specific options as well as a wildcard.

Chilkat Delphi ActiveX Downloads

Delphi ActiveX
var
success: Integer;
ftp: TChilkatFtp2;
listing: WideString;

begin
success := 0;

//  Demonstrates the Ftp2.GetTextDirListing method, which sends a legacy LIST request and returns
//  the server's raw textual listing.  The only argument is appended literally as a server-side
//  listing argument; an empty string lists the current remote directory.

ftp := TChilkatFtp2.Create(Self);

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 = 0) then
  begin
    Memo1.Lines.Add(ftp.LastErrorText);
    Exit;
  end;

success := ftp.ChangeRemoteDir('public_html');
if (success = 0) then
  begin
    Memo1.Lines.Add(ftp.LastErrorText);
    Exit;
  end;

//  Get the raw listing text.  The format is server-defined (often Unix "ls -l" style).
listing := ftp.GetTextDirListing('');
if (ftp.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(ftp.LastErrorText);
    Exit;
  end;
Memo1.Lines.Add(listing);

success := ftp.Disconnect();
if (success = 0) then
  begin
    Memo1.Lines.Add(ftp.LastErrorText);
    Exit;
  end;