Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <f32file.h>
Link against: efsrv.lib

Class TEntry

class TEntry;

Description

Encapsulates an entry in a directory, which can be another (nested) directory, a file or a volume label.

Each directory entry has a name which is relative to its owning directory and a type, which is indicated by its unique identifier (UID).

An entry can be interrogated for the following properties:

1. the kind of entry: stored in the entry UIDs, stored in iType

2. the entry attributes, stored in iAtt

3. the size of entry

4. the time the entry was last modified.

Members

Defined in TEntry:

See also:


Construction and destruction


TEntry()

IMPORT_C TEntry();

Description

Default constructor.


TEntry()

IMPORT_C TEntry(const TEntry &aEntry);

Description

Copy constructor.

Parameters

const TEntry &aEntry

The TEntry object to be copied.

[Top]


Member functions


operator=()

IMPORT_C TEntry &operator=(const TEntry &aEntry);

Description

Assignment operator.

Parameters

const TEntry &aEntry

The TEntry object to be copied to this TEntry object.

Return value

TEntry &

A reference to this TEntry object.


IsReadOnly()

IMPORT_C TBool IsReadOnly() const;

Description

Tests whether the file or directory is read-only.

Return value

TBool

ETrue if entry is read-only, EFalse if not.

See also:


IsHidden()

IMPORT_C TBool IsHidden() const;

Description

Tests whether the file or directory is hidden.

Return value

TBool

ETrue if entry is hidden, EFalse if not.

See also:


IsSystem()

IMPORT_C TBool IsSystem() const;

Description

Tests whether the file or directory has the system attribute set.

Return value

TBool

ETrue if entry is a system entry, EFalse if not.

See also:


IsDir()

IMPORT_C TBool IsDir() const;

Description

Tests whether the entry is a directory.

Return value

TBool

ETrue if entry indicates a directory, EFalse if not.

See also:


IsArchive()

IMPORT_C TBool IsArchive() const;

Description

Tests whether the file is an archive file.

Return value

TBool

ETrue if file is archive, EFalse if not.

See also:


operator[]()

inline const TUid &operator[](TInt anIndex) const;

Description

Gets any one of the file's three UIDs.

Parameters

TInt anIndex

Identifies the UID required. This can be zero, one or two. Specifiying any other value raises a panic.

Return value

const TUid &

On return, contains the requested UID.

See also:


IsUidPresent()

inline TBool IsUidPresent(TUid aUid) const;

Description

Tests whether the specified UID matches any of the UIDs in the UID type.

Parameters

TUid aUid

The UID to be checked.

Return value

TBool

True if the specified UID is present, false otherwise.

See also:


IsTypeValid()

inline TBool IsTypeValid() const;

Description

Test whether the file has a valid UID.

Return value

TBool

True if the entry has a valid UID, false otherwise.

See also:


MostDerivedUid()

inline TUid MostDerivedUid() const;

Description

Gets the most derived (i.e. the most specific) UID.

Return value

TUid

The entry's most derived UID.

See also:

[Top]


Member data


iAtt

TUint iAtt;

Description

The individual bits within this byte indicate which attributes have been set.

See also:


iSize

TInt iSize;

Description

The size of the file in bytes. For files larger that 2G it must be cast to TUint in order to avoid looking like negative signed.


iModified

TTime iModified;

Description

The local time of last modification.


iType

TUidType iType;

Description

The file's UIDtype


iName

TBufC< KMaxFileName > iName;

Description

The name of the file relative to the owning directory, with a maximum of KMaxFileName characters.

See also: