Advertisement
Guest User

Untitled

a guest
Jul 12th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. with IdFTP1 do
  2. begin
  3. Host := 'xxx';
  4. Username := 'xxx';
  5. Password := 'xxx';
  6. passive := True;
  7. Connect;
  8. ChangeDir('Service_Update');
  9. ChangeDir('QA');
  10. Self.Caption := Size('jam.zipper').tostring;
  11. TransferType := ftBinary; //tried with and without
  12. Get('jam.zipper','jam.zipper',true);
  13. Button1.Caption := 'Done'; //never gets here
  14. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement