Поделиться через


CFileFind::FindFile

Call this member function to open a file search.

virtual BOOL FindFile(
   LPCTSTR pstrName = NULL,
   DWORD dwUnused = 0 
);

Параметры

  • pstrName
    A pointer to a string containing the name of the file to find. If you pass NULL for pstrName, FindFile does a wildcard (*.*) search.

  • dwUnused
    Reserved to make FindFile polymorphic with derived classes. Must be 0.

Возвращаемое значение

Nonzero if successful; otherwise 0. To get extended error information, call the Win32 function GetLastError.

Заметки

After calling FindFile to begin the file search, call FindNextFile to retrieve subsequent files. You must call FindNextFile at least once before calling any of the following attribute member functions:

Пример

See the example for CFileFind::IsDirectory.

Требования

Header: afx.h

См. также

Основные понятия

CFileFind Class

CFileFind Members

Hierarchy Chart

CFileFind::FindNextFile