Getting directory tree

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to get a directory tree from a given parent directory using Win32 or C Runtime functions? In other words without using MFC. I can't seem to find out how to do this.

Thanks
 
Does anyone know how to get a directory tree from a given parent directory using Win32 or C Runtime functions?

Stew,

Use FindFirstFile, FindNextFile, FindClose - recursively if you want
to process the sub-directories.

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top