#include <f32file.h>
Link against: efsrv.lib
class TEntryArray |
Public Member Functions | |
---|---|
TEntryArray() | |
IMPORT_C TInt | Count() |
IMPORT_C const TEntry & | operator[](TInt) |
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.
See also: TEntry RDir::Read
IMPORT_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.
Gets the directory entry at the specified index.
Parameters | |
---|---|
anIndex | Index of the entry within the array. This value is relative to zero. |
Panic Codes | |
---|---|
FSCLIENT | 22 if anIndex is greater than or equal to the number of elements in the array. |