Hi, all
We are using Microsoft Visual C++ 6.0 Service Pack 6. We need to develop a
recursive function to search files in fix drives of user machine. Is there
one API that implement recursity in it? Will we need to develop recursive
function using FindFirstFile and FindNextFile?
Thanks in advance.
David Lowndes - 22 Jun 2005 08:28 GMT
>Is there
>one API that implement recursity in it?
Not that I'm aware of.
>Will we need to develop recursive
>function using FindFirstFile and FindNextFile?
I believe so.
Dave

Signature
MVP VC++ FAQ: http://www.mvps.org/vcfaq
Pavel A. - 22 Jun 2005 14:22 GMT
> Hi, all
>
> We are using Microsoft Visual C++ 6.0 Service Pack 6. We need to develop a
> recursive function to search files in fix drives of user machine. Is there
> one API that implement recursity in it? Will we need to develop recursive
> function using FindFirstFile and FindNextFile?
A desktop search software is available fom Microsoft, Google and maybe other
vendors. It might expose some API that you can use.
Before rolling your own, it's definitely worth to check out.
--PA