Group: File Management - Library: kernel32
The FindClose function closes the specified search handle. The FindFirstFile and FindNextFile functions use the search handle to locate files with names that match a given name.
Building a tree of subdirectories for a given path using FindFile functions
BOOL FindClose(
HANDLE hFindFile // file search handle
);
DECLARE INTEGER FindClose IN kernel32;
INTEGER hFindFile
hFindFile [in/out] File search handle. This handle must have been previously opened by the FindFirstFile function.
If the function succeeds, the return value is nonzero.