Group: File Management - Library: kernel32
The FindNextFile function continues a file search from a previous call to the FindFirstFile function.
Building a tree of subdirectories for a given path using FindFile functions
BOOL FindNextFile(
HANDLE hFindFile, // search handle
LPWIN32_FIND_DATA lpFindFileData // data buffer
); DECLARE INTEGER FindNextFile IN kernel32;
INTEGER hFindFile,;
STRING @ lpFindFileData hFindFile [in] Search handle returned by a previous call to the FindFirstFile function.
lpFindFileData [out] Pointer to the WIN32_FIND_DATA structure that receives information about the found file or subdirectory.
If the function succeeds, the return value is nonzero.
Home