The FindFirstFile function searches a directory for a file whose name matches the specified filename. FindFirstFile examines subdirectory names as well as filenames.
HANDLE FindFirstFile(
LPCTSTR lpFileName, |
// pointer to name of file to search for |
LPWIN32_FIND_DATA lpFindFileData |
// pointer to returned information |
); |
Windows NT: Points to a null-terminated string that specifies a valid directory or path and filename, which can contain wildcard characters (* and ?).
There is a default string size limit for paths of MAX_PATH characters. This
limit is related to how the FindFirstFile function parses paths. An
application can transcend this limit and send in paths longer than MAX_PATH
characters by calling the wide (W) version of FindFirstFile and
prepending “\\?\” to the path. The “\\?\” tells the function to turn off path
parsing; it lets paths longer than MAX_PATH be used with FindFirstFileW.
This also works with UNC names. The “\\?\” is ignored as part of the path. For
example, “\\?\C:\myworld\private” is seen as “C:\myworld\private”, and
“\\?\UNC\bill_g_1\hotstuff\coolapps” is seen as
“\\bill_g_1\hotstuff\coolapps”.
If the function succeeds, the return value is a search handle used in a subsequent call to FindNextFile or FindClose.
If the function fails, the return value is INVALID_HANDLE_VALUE. To get extended error information, call GetLastError.
The FindFirstFile function opens a search handle and returns information about the first file whose name matches the specified pattern. Once the search handle is established, you can use the FindNextFile function to search for other files that match the same pattern. When the search handle is no longer needed, close it by using the FindClose function.
This function searches for files by name only; it cannot be used for attribute-based searches.
FindClose, FindNextFile, GetFileAttributes, SetFileAttributes, WIN32_FIND_DATA
file: /Techref/os/win/api/win32/func/src/f24_10.htm, 4KB, , updated: 2000/4/7 11:19, local time: 2024/11/12 11:35,
18.116.23.169:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/os/win/api/win32/func/src/f24_10.htm"> FindFirstFile</A> |
Did you find what you needed? |