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 ?
link|improve this question

How do you configure which server and port to connect to? How do you configure username and password? Active vs passive? Binmode vs ascii? What does i ever 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
i - left from other piece of code inside the procedure. ( removed ). the server is connected on port 21, transfertype is binary, active mode, it is configured to accept all connections - anonymous mode. – Yordan Yanakiev Nov 12 '11 at 10:41
the thing hapend in onWorkEnd procedure of IdFTP. – Yordan Yanakiev Nov 12 '11 at 10:42
feedback

2 Answers

up vote 4 down vote accepted

Error 10048 = Socket already in use: info

You don't need the WorkEnd event, Put statement returns when its finished with uploading a file:

  // loop
  for I := 0 to files.Count-1 do
  begin
    idFtp1.Connect;
    idFtp1.Put(files[i]);
    idFtp1.Disconnect;
  end;

  // or
  idFtp1.Put('MyFirstFile');
  idFtp1.DisConnect;
  // ......
  idFtp1.Connect;
  idFtp1.ChangeDir('DirSecondFile');
  idFtp1.Put('MySecondFile');
link|improve this answer
this will do aswell, but is there a way to do it the way i tried - after each uploaded file to have some sort of disconnecting and reconnecting ? – Yordan Yanakiev Nov 12 '11 at 13:03
I updated my answer – Arjen van der Spek Nov 12 '11 at 13:31
thank you very much. :) this did the job done ! :) – Yordan Yanakiev Nov 12 '11 at 16:42
feedback

DO NOT use the OnWork... events to drive your business logic! They are meant for status only. For the most part, Indy is NOT event driven, minus a few exceptions.

In this case, OnWorkEnd triggers after the raw file data has been transmitted but BEFORE the server's response to the upload has been received and processed. The correct way to upload another file is to simply call Put() again after the previous call to Put() exits, eg:

procedure TForm1.UploadFiles;
begin
  try
    IdFTP.Connect;
    try
      while (there is a file to upload) do
      begin
        if (directory is different than current) then
          IdFTP.ChangeDir(directory);
        IdFTP.Put(fileName, ExtractFileName(fileName));
      end;
    finally
      IdFTP.Disconnect;
    end;
  except
    on E: Exception do
      ShowMessage(E.Message);
  end;
end;
link|improve this answer
another great example. thank you very very much Remy Leaeau aswel :) Your comment is greath and noted :) – Yordan Yanakiev Nov 12 '11 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.