Registriert seit: 3. Sep 2004
434 Beiträge
Delphi 10.4 Sydney
|
Re: FTP.List fehler
16. Mai 2007, 12:30
Um anderen Suchenden zu helfen, falls es dennoch nicht klappt:
Lösung unter:
http://www.delphipraxis.net/internal...rectorylisting
Zitat:
TIdFTP by default registers directory listing parsers for only the NLST and MLST formats. If the FTP server is returning a format other than those, you need to include the correct unit with the correct parser in your implementation uses clause. Like:
uses IdFTPListParserWindowsNT;
Or, as an alternative, you can include the IdAllFTPListParsers unit to get them all in one swipe.
|