Counting files in a given location
-
Hi, is there a way to know how many files a given folder/drive contains WITHOUT having to "manually" (and slooowly) count them one by one via FindFirstFile() FindNextFile() etc.? is there like a GetFileCount(LPCSTR path) API function? Thanks!
Ernesto D. wrote: is there like a GetFileCount(LPCSTR path) API function? No. You'll have to count them using
FindFirstFile()
/FindNextFile()
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-
Ernesto D. wrote: is there like a GetFileCount(LPCSTR path) API function? No. You'll have to count them using
FindFirstFile()
/FindNextFile()
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"