TUnicodeSearchRec
Unicode searchrec record
Declaration
Source position: filutilh.inc line 48
Type
TUnicodeSearchRec = record
public
Time : Int64deprecated;
Size : Int64;
Attr : LongInt;
Name : UnicodeString;
ExcludeAttr : LongInt;
FindHandle : THandle;
private
function GetTimeStamp : TDateTime;
function GetTimeStampUTC : TDateTime;
public
property TimeStamp : TDateTime;
property TimeStampUTC : TDateTime;
end
Description
TRawbyteSearchRec is a search handle description record using multi-byte strings. It is initialized by a call to FindFirst and can be used to do subsequent calls to FindNext . It contains the result of these function calls. It must be used to close the search sequence with a call to FindClose .
Remark
Not all fields of this record should be used. Some of the fields are for internal use only. (PathOnly for example, is only provided for Kylix compatibility) !!!
See also
Name | Description |
---|---|
FindClose | Close a find handle |
FindFirst | Start a file search and return a findhandle |
FindNext | Find the next entry in a findhandle. |
Int64 | 64-bit, signed integer |
Int64 | 64-bit, signed integer |
LongInt | A signed 32-bits integer |
LongInt | A signed 32-bits integer |
TDateTime | Type describing date/time |
TDateTime | Type describing date/time |
THandle | File Handle type. |
TRawByteSearchRec | Record describing a search handle or result (single-byte string version) |
TSearchRec | Record describing a search handle or result |
UnicodeString | A string consisting of widechars. |