INtime SDK Help
FindNextRtFile
INtime SDK v6 > About INtime > INtime Kernel > Files > FindNextRtFile

Continues a file search from a previous call to the FindFirstRtFile function.


BOOLEAN FindNextRtFile(
    LPFIND_FILE_DATA lpFindData
);

Parameters

lpFindData
A pointer to a FIND_FILE_DATA structure previously returned from a successful call to FindFirstRtData or FindNextRtFile.

Remarks

This function uses the same search filters that were used to initialize the FIND_FILE_DATA structure passed in the lpFindData parameter. For additional information, see FindFirstRtFile.

The order in which the search returns the files, such as alphabetical order, is not guaranteed, and is dependent on the file system. If the data must be sorted, the application must do the ordering after obtaining all the results.

 

Requirements

Versions Defined in Include Link to
INtime 6.0 intime/rt/include/rtbase.h rt.h rt.lib

See Also