¡@

Home 

c++ Programming Glossary: findfirst

How can I quickly enumerate directories on Win32?

http://stackoverflow.com/questions/2511672/how-can-i-quickly-enumerate-directories-on-win32

I currently have an app which spends 95 of it's time in FindFirst FindNextFile APIs and it takes several minutes to enumerate.. locality usually a lot. On Windows 7 W2K8R2 you can use FindFirstFileEx with FindExInfoBasic the main speedup being omitting the..

How might I wrap the FindXFile-style APIs to the STL-style Iterator Pattern in C++?

http://stackoverflow.com/questions/2531874/how-might-i-wrap-the-findxfile-style-apis-to-the-stl-style-iterator-pattern-in-c

in C I'm working on wrapping up the ugly innards of the FindFirstFile FindNextFile loop though my question applies to other similar.. unit testing struct RealFindXFileFunctions static HANDLE FindFirst LPCWSTR lpFileName LPWIN32_FIND_DATAW lpFindFileData return.. lpFileName LPWIN32_FIND_DATAW lpFindFileData return FindFirstFile lpFileName lpFindFileData static BOOL FindNext HANDLE hFindFile..