[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
A simple data object representing a file
Source position: fpg_base.pas line 592
type TFileEntry = class(TObject) |
||
public |
||
constructor Create; |
||
property Name: String; [rw] |
|
Name of a file |
property Extension: String; [rw] |
|
The extension of a file |
property Size: Int64; [rw] |
|
Size of a file in bytes |
property EntryType: TFileEntryType; [rw] |
||
property IsLink: Boolean; [rw] |
|
Is this item a symbolic link (on unix-type OSes) |
property LinkTarget: String; [rw] |
|
If it is a symbolic link, LinkTarget is what it points too |
property IsExecutable: Boolean; [rw] |
||
property ModTime: TDateTime; [rw] |
|
Last modified timestamp |
property Mode: TFileModeString; [rw] |
||
property Owner: TfpgString; [rw] |
||
property Group: TfpgString; [rw] |
||
property Attributes: TFileModeString; [rw] |
||
end; |
|
A simple data object representing a file |
|
| | ||
TObject |
A simple data object representing a file. Some properties are OS dependant.