Thema: Delphi Indy + IdFTPListParseVMS

Einzelnen Beitrag anzeigen

Ines

Registriert seit: 22. Aug 2006
Ort: Augsburg
96 Beiträge
 
Delphi 2009 Enterprise
 
#1

Indy + IdFTPListParseVMS

  Alt 7. Jul 2009, 10:26
Hallo DP'ler!

Ich muß Dateien mit FTP vom Server herunterladen (TIdFTP).

Es gibt spezielle Dateien zum "Aufbereiten" der Daten vom Server (in meinem Fall VMS).

Hier ein kleiner Ausschnitt aus dem File IdFTPListParseVMS:

Delphi-Quellcode:
type
  TIdVMSFTPListItem = class(TIdOwnerFTPListItem)
  protected
    FGroupName : String;
    FVMSOwnerPermissions: String;
    FVMSWorldPermissions: String;
    FVMSSystemPermissions: String;
    FVMSGroupPermissions: String;
    FNumberBlocks : Integer;
    FBlockSize : Integer;
    FVersion : Integer;
  public
    property GroupName : String read FGroupName write FGroupName;
    property VMSSystemPermissions : String read FVMSSystemPermissions write FVMSSystemPermissions;
    property VMSOwnerPermissions : String read FVMSOwnerPermissions write FVMSOwnerPermissions;
    property VMSGroupPermissions : String read FVMSGroupPermissions write FVMSGroupPermissions;
    property VMSWorldPermissions : String read FVMSWorldPermissions write FVMSWorldPermissions;
    property Version : Integer read FVersion write FVersion;
    property NumberBlocks : Integer read FNumberBlocks write FNumberBlocks;
    property BlockSize : Integer read FBlockSize write FBlockSize;
  end;
Jetzt meine Frage: Wenn ich auf die Parameter BlockSize oder NumberBlocks zugreifen möchte - wie stelle ich das an?
Ich geb's ja zu - ich steh' momentan auf der Leitung.

Danke für Eure Hilfe
Ines

P.S. Ich verwende Delphi2009 und Win XP.
Ines
  Mit Zitat antworten Zitat