TFindFile Class Reference

#include <f32file.h>

Link against: efsrv.lib

class TFindFile
Public Member Functions
TFindFile(RFs &)
const TDesC &File()
IMPORT_C TIntFind()
IMPORT_C TIntFindByDir(const TDesC &, const TDesC &)
IMPORT_C TIntFindByPath(const TDesC &, const TDesC *)
IMPORT_C TIntFindWild(CDir *&)
IMPORT_C TIntFindWildByDir(const TDesC &, const TDesC &, CDir *&)
IMPORT_C TIntFindWildByPath(const TDesC &, const TDesC *, CDir *&)
IMPORT_C TIntSetFindMask(TUint)

Detailed Description

Searches for files and directories.

Each function has a variant which searches for multiple files/directories, using one or more wildcard characters in the filename. If an initial search is successful, further searches can be carried out using Find() or FindWild(). You can also retrieve the fully qualified file specification, and manipulate and interrogate it using the TParse class (or related classes).

Note that when specifying the path of a directory to search, the path should always end with a backslash character.When trailing backslash is not present then it is considered as file. And path will be taken till last backslash. The client must have appropriate capabilities for the directory to be searched. For example without ALL FILES Capability, it is not possible to successfully find any files under directory.

By default if the file is not found in the current drive the rest of the drives, excluding the remote ones, will be searched. Using function SetFindMask it is possible to specify a combination of drive attributes(aMask) that the drives to be searched must match.

Constructor & Destructor Documentation

TFindFile ( RFs & )

IMPORT_CTFindFile(RFs &aFs)

Constructor taking a file server session.

ParameterDescription
aFsFile server session.

Member Function Documentation

File ( )

const TDesC &File()const [inline]

Gets the full file specification of a file which was found by a successful call to any of the search variants that do not accept wildcards.

The file specification includes drive, path and filename.

Notes:

1. When called after a successful search using wildcards the only valid components of the retrieved file specification are drive letter and directory.

Returns: The full path and filename.

Find ( )

IMPORT_C TIntFind()

Searches for the next file/directory.

This should be used after a successful call to FindByPath() or FindByDir(), to find the next occurrence of the filename in the path or drive list.

Using function SetFindMask it is possible to specify a combination of attributes that the drives to be searched must match.

Note:

1. After a file/directory has been found, use TFindFile::File() to get the fully qualified path and filename.

See also: TFindFile::FindByPath TFindFile::FindByDir TFindFile::File TFindFile::SetFindMask()

Returns: KErrNone, if another occurrence of the file was found; KErrNotFound, if no more occurrences were found.

FindByDir ( const TDesC &, const TDesC & )

IMPORT_C TIntFindByDir(const TDesC &aFileName,
const TDesC &aDirPath
)

Searches for a file/directory in a directory on all available drives.

The search ends when the file/directory is found, or when every available drive has been unsuccessfully searched.

Notes:

1. A drive letter may be specified in aDirPath. If a drive is specified, then that drive is searched first. If no drive is specified, then the drive specified in the session path is searched first. The remaining available drives are then searched in descending alphabetical order, from Y: to A:, and ending with the Z: drive. Using function SetFindMask it is possible to specify a combination of attributes that the drives to be searched must match.

2. For the corresponding search using wildcards, use FindWildByDir().

3. After a file has been found, use TFindFile::File() to get the fully qualified path and filename. To search for the next occurrence, use TFindFile::Find().

See also: TFindFile::FindWildByDir() TFindFile::File() TFindFile::Find() TFindFile::SetFindMask()

ParameterDescription
aFileNameThe filename to search for. If a path is specified, it overrides the path specified in aDir. If no path is specified, the path contained in aDir is used.
aDirPathA single path indicating a directory to be searched on each drive.When path is empty then session path will be used for the search.

Returns: KErrNone, if the file was found, otherwise one of the system-wide error codes, including: KErrNotFound, if the file was not found; KErrPermissionDenied, if the client does not have appropriate capabilities for the directory to be searched; KErrArgument, if the filename is empty.

FindByPath ( const TDesC &, const TDesC * )

IMPORT_C TIntFindByPath(const TDesC &aFileName,
const TDesC *aPathList
)

Searches for a file/directory in one or more directories in the path.

The search ends when the file/directory is found, or when every directory specified in the path list has been unsuccessfully searched.

Notes:

1. For the equivalent search using wildcards, use FindWildByPath().

2. After a file has been found, use TFindFile::File() to get the fully qualified path of the file. To search for the next occurrence, use TFindFile::Find().

See also: TFindFile::FindWildByPath TFindFile::File TFindFile::Find

ParameterDescription
aFileNameThe filename to search for. If this specifies a directory as well as a filename, then that directory is searched first.
aPathListA list of directories to be searched. Paths in this list must be separated by a semicolon character, but a semicolon is not required after the final path. The directories are searched in the order in which they occur in the list. If a path in the list contains a drive letter, that drive alone is searched. If a path contains no drive letter, the function searches for the file in that directory on every available drive in turn, beginning with drive Y:, in descending alphabetical order and ending with drive Z:.When path is empty then session path will be used for the search.

Returns: KErrNone, if the filename was found; KErrNotFound, if the filename was not found. KErrArgument, if the filename is empty.

FindWild ( CDir *& )

IMPORT_C TIntFindWild(CDir *&aDirList)

Searches for the next file/directory.

This should be used after a successful call to FindWildByPath() or FindWildByDir(), for the next occurrences of the filename in the path or drive list.Using function SetFindMask it is possible to specify a combination of attributes that the drives to be searched must match.

Notes:

1. The function sets aDir to NULL, then allocates memory for it before appending entries to the list. Therefore, aDir should have no memory allocated to it before this function is called, otherwise this memory will become orphaned.

2. The caller of the function is responsible for deleting aDir after the function has returned. On error this pointer will be set NULL, thus safe to delete.

3. Calling TFindFile::File() after a successful search, will return the drive letter and the directory containing the file(s). The filenames may be retrieved via the array of TEntry::iName objects contained in aDir. If you want to retrieve the fully qualified path of a file, you will need to parse the path and the filename using the TParse class or derived classes.

out: On success a pointer to the internally allocated by this method CDir object, which in turn contains the entries for all files matching aFileName in the first directory in which a match occurred. In this case this API caller is responsible for deleting aDir. If some error occured (including KErrNotFound meaning that nothing found) this pointer will be set to NULL, which is also safe to delete.

See also: TParse TEntry::iName TFindFile::File TFindFile::FindWildByPath TFindFile::FindWildByDir TFindFile::SetFindMask()

ParameterDescription
aDirListin: a reference to the pointer that will be modified by this method.

Returns: KErrNone if further occurrences were found; KErrNotFound if no more matching files were found.

FindWildByDir ( const TDesC &, const TDesC &, CDir *& )

IMPORT_C TIntFindWildByDir(const TDesC &aFileName,
const TDesC &aDirPath,
CDir *&aDir
)

Searches, using wildcards, for one or more files/directories in a specified directory.

If no matching file is found in that directory, all available drives are searched in descending alphabetical order, from Y: to A:, and ending with the Z: drive.Using function SetFindMask it is possible to specify a combination of attributes that the drives to be searched must match.

The search ends when one or more matching filenames are found, or when every available drive has been unsuccessfully searched. To begin searching again after a successful match has been made, use FindWild(). Wildcards may be specified in the filename.

Notes:

1. A drive letter may be specified in aDirPath (or in aFileName). If a drive is specified, that drive is searched first, followed by the other available drives, in descending alphabetical order. If no drive is specified, the drive contained in the session path is searched first.

2. The function sets aDir to NULL, then allocates memory for it before appending entries to the list. Therefore, aDir should have no memory allocated to it before this function is called, otherwise this memory will become orphaned.

3. The caller of the function is responsible for deleting aDir after the function has returned. On error this pointer will be set NULL, thus safe to delete.

4. Calling TFindFile::File() after a successful search returns the drive letter and directory containing the file(s). Filenames may be retrieved via the array of TEntry::iNames contained in aDir. If you want to retrieve the fully qualified path of a file, you will need to parse the path and the filename.

out: On success a pointer to the internally allocated by this method CDir object, which in turn contains the entries for all files matching aFileName in the first directory in which a match occurred. In this case this API caller is responsible for deleting aDir. If some error occured (including KErrNotFound meaning that nothing found) this pointer will be set to NULL, which is also safe to delete.

See also: TFindFile::FindWild TFindFile::File TFindFile::SetFindMask()

ParameterDescription
aFileNameThe filename to search for. May contain wildcards. If a path is specified, it overrides the path specified in aDirPath. If no path is specified, the path contained in aDirPath is used in the search.
aDirPathPath indicating a directory to search on each drive.
aDirin: a reference to the pointer that will be modified by this method.

Returns: KErrNone if one or more matching files was found; KErrNotFound if no matching file was found in the directory on any of the drives. KErrArgument, if the filename is empty.

FindWildByPath ( const TDesC &, const TDesC *, CDir *& )

IMPORT_C TIntFindWildByPath(const TDesC &aFileName,
const TDesC *aPathList,
CDir *&aDirList
)

Searches for one or more files/directories in the directories contained in a path list.

Wildcard characters can be specified. The search ends when one or more filenames matching aFileName is found, or when every directory in the path list has been unsuccessfully searched. To begin searching again after a successful match has been made, use FindWild().

Using function SetFindMask it is possible to specify a combination of attributes that the drives to be searched must match.

Notes:

1. The function sets aDir to NULL, then allocates memory for it before appending entries to the list. Therefore, aDir should have no memory allocated to it before this function is called, otherwise this memory will become orphaned.

2. The caller of the function is responsible for deleting aDir after the function has returned. On error this pointer will be set NULL, thus safe to delete.

3. Calling TFindFile::File() after a successful search gets the drive letter and directory containing the file(s). The filenames can be retrieved via the array of TEntry::iName objects contained in aDir. If you want to retrieve the fully qualified path of a file, you need to parse the path and the filename.

out: On success a pointer to the internally allocated by this method CDir object, which in turn contains the entries for all files matching aFileName in the first directory in which a match occurred. In this case this API caller is responsible for deleting aDir. If some error occured (including KErrNotFound meaning that nothing found) this pointer will be set to NULL, which is also safe to delete.

See also: TFindFile::FindWild TFindFile::File TEntry::iName TFindFile::SetFindMask()

ParameterDescription
aFileNameThe filename to search for. May contain wildcards. If it specifies a directory as well as a filename, then that directory is searched first.
aPathListList of directories to search. Paths in this list must be separated by a semicolon character, but a semicolon is not required after the final path. The directories are searched in the order in which they occur in the list. Directories must be fully qualified, including a drive letter, and the name must end with a backslash.
aDirListin: a reference to the pointer that will be modified by this method.

Returns: KErrNone, if one or more matching files was found; KErrNotFound, if no matching file was found in any of the directories. KErrArgument, if the filename is empty.

SetFindMask ( TUint )

IMPORT_C TIntSetFindMask(TUintaMask)

Can be used in order to specify a combination of drive attributes that the drives to be searched must match. When searching without specifying a mask, all drives, except the remote ones will be returned.

ParameterDescription
aMaskThe combination of drive attributes that we want the drives to match.

Returns: KErrNone, if the mask supplied is correct. KErrArgument, if the mask supplied is invalid.