FindNextProjectFile

4/8/2010

This function continues a file search from a previous call to the FindFirstProjectFile function.

Syntax

BOOL FindNextProjectFile(
  HANDLE hHandle, 
  LPWIN32_FIND_DATA lpFindProjData 
);

Parameters

  • hHandle
    [in] Handle to the first project file as returned by a previous call to FindFirstProjectFile.
  • lpFindProjData
    [out] Long pointer to the WIN32_FIND_DATA structure that receives information about the found file or subdirectory.

Return Value

TRUE indicates success. FALSE indicate failure. To get extended error information, call GetLastError. If no matching files are found, GetLastError returns ERROR_NO_MORE_FILES.

Remarks

This function searches for files by name only; it cannot be used for attribute-based searches.

This function is the Windows Mobile replacement for the Windows Embedded CE function FindNextFile.

Requirements

Header projects.h
Library note_prj.lib
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

See Also

Reference

File and Application Management Functions
FindFirstFlashCard
FindFirstProjectFile
FindNextFlashCard

Other Resources

FindNextFile