ftp/Unit1.pas

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ Technical support: support@smartftp.com }
 
unit Unit1;
 
interface
 
uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ComObj,
  StdCtrls;
type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;
 
var
  Form1: TForm1;
  connection: variant;
 
implementation
 
{$R *.DFM}
 
procedure TForm1.Button1Click(Sender: TObject);
var
   ret: Integer;
   fileLogger: variant;
begin
     connection := CreateOleObject('sfFTPLib.FTPConnectionMTA');
     connection.Host := 'ftp.smartftp.com';
     connection.Username := 'anonymous';
     connection.Password := 'test@test.com';
      
     //fileLogger := CreateOleObject('sfFTPLib.FileLogger');
     //fileLogger.File := 'FTPLib.log';
     //connection.Logger := fileLogger;
 
     connection.Connect();
     ShowMessage('Connected');
end;
 
end.