Registriert seit: 30. Nov 2005
Ort: München
5.771 Beiträge
Delphi 10.4 Sydney
|
Re: Indy FTP Client Read Error (TidFTP)
24. Jan 2008, 15:07
You can use the try except things to this:
Delphi-Quellcode:
try
// do some stuff
except on e:EIdReplyRFCError do
begin
// do exception handling
end;
end;
Klaus
|