Location:
f32file.h
Link against: efsrv.lib
TEntryArray
Supported from 5.0
Array of directory entries. It contains the results of an
RDir::Read()
call: it will contain all the TEntry
s in
the directory. Thus, a directory can be read in a single call, which minimises
client/server communication overheads.
|
Defined in TEntryArray
:
Count()
, TEntryArray()
, operator[]()
TInt Count() const;
Gets the number of entries in
TEntryArray
.
|
const TEntry& operator[](TInt anIndex) const;
Gets the directory entry at a specified index.
Note:
The index specified must be less than the number of elements in the array or a panic will occur.
|
|