CFileFind::FindFile
virtual BOOL FindFile( LPCTSTR pstrName = NULL, DWORD dwUnused = 0 );Return ValueNonzero if successful; otherwise 0. To get extended error information, call the Win32 functionGetLastError.ParameterspstrNameA pointer to a string containing the name of the file to find. If you pass NULL for pstrName, FindFile does a wildcard (*.*) search.dwUnusedReserved to make FindFile polymorphic with derived classes. Must be 0.