IdFTP: TIdFTP;
...
procedure TForm1.IdFTPWorkEnd(ASender: TObject; AWorkMode: TWorkMode);
begin
IdFTP.Disconnect;
try
IdFTP.Connect;
IdFTP.ChangeDir( directory );
IdFTP.Put( fileName, ExtractFileName( fileName ) );
except
end;
end;
This is most of the code. I wish when the 1 upload complete to start another, but this code seems to rise an error 10048.
- is it correct way to upload sequence of files and commands to the server ?
- why this error 10048 is rising, and how to fix it ?
iever do for you? There isn't much code here, it feels like there ought to be more somewhere that would have the bug. – sarnold Nov 12 '11 at 8:49