|
||
class TEntryArray;
Array of directory entries.
It contains the results of a call to RDir::Read()
: it will contain all the TEntry
items in the directory. Thus, a directory can be read in a single call, minimising client/server communication overheads.
Defined in TEntryArray
:
Count()
Gets the number of entries in the arrayTEntryArray()
Default constructoroperator[]()
Gets the directory entry at the specified indexTEntry
Encapsulates an entry in a directory, which can be another (nested) directory, a file or a volume labelIMPORT_C TEntryArray();
Default constructor.
Initialises its count of contained TEntry
objects to zero.
IMPORT_C TInt Count() const;
Gets the number of entries in the array.
|
IMPORT_C const TEntry &operator[](TInt anIndex) const;
Gets the directory entry at the specified index.
|
|
|