up vote 1 down vote favorite
share [g+] share [fb]

which function windows is calling to list the files in a directory ?

thanks

link|improve this question
You gotta be a little more specific. Are you looking for some specific programming language syntax? – C-Pound Guru Jun 21 '09 at 15:50
feedback

2 Answers

up vote 4 down vote accepted

You can use this functions to do a directory listing with the WIN32 API.

FindFirstFile, FindNextFile and FindClose

A full example can be found here

Listing the Files in a Directory WIN32 API

For a portable approach check this post:

"Get list of files in a directory using c/c++"

link|improve this answer
feedback

Didn't exactly get your question but won't using "dir" as system command do the job? Correct me if I am wrong, coz the question itself wasn't very clear to me.

Edit - Hi John, this is the source code for listing directories.

http://msdn.microsoft.com/en-us/library/aa365200(VS.85).aspx

Hope this helps.

link|improve this answer
I will be able to answer better if the question becomes clearer to me so if someone understands the question better, can they please edit it? – Elitecoder Jun 21 '09 at 15:47
Hey, in other words, im looking for the function that dir is using to list the files in a dir thanks – John Terry Jun 21 '09 at 15:48
I guess the dir command does it similarly – jitter Jun 21 '09 at 16:09
feedback

Your Answer

 
or
required, but never shown