Description | Hierarchy | Fields | Methods | Properties |
type TFTPListRec = class(TObject)
Object for holding file information
parsed from directory listing of FTP server.
procedure Assign(Value: TFTPListRec); virtual; |
property FileName: string read FFileName write FFileName; |
|
property Directory: Boolean read FDirectory write FDirectory; |
|
property Readable: Boolean read FReadable write FReadable; |
|
property FileSize: int64 read FFileSize write FFileSize; |
|
property FileTime: TDateTime read FFileTime write FFileTime; |
|
property OriginalLine: string read FOriginalLine write FOriginalLine; |
|
property Mask: string read FMask write FMask; |
|
property Permission: string read FPermission write FPermission; |
procedure Assign(Value: TFTPListRec); virtual; |
You can assign another TFTPListRec to this object.
property FileName: string read FFileName write FFileName; |
name of file
property Directory: Boolean read FDirectory write FDirectory; |
if name is subdirectory not file.
property Readable: Boolean read FReadable write FReadable; |
if you have rights to read
property FileSize: int64 read FFileSize write FFileSize; |
size of file in bytes
property FileTime: TDateTime read FFileTime write FFileTime; |
date and time of file. Local server timezone is used. Any timezone conversions was not done!
property OriginalLine: string read FOriginalLine write FOriginalLine; |
original unparsed line
property Mask: string read FMask write FMask; |
mask what was used for parsing
property Permission: string read FPermission write FPermission; |
permission string (depending on used mask!)