C++ Problem

Joined
Jan 7, 2009
Messages
2
Reaction score
0
I am using VC++ 2008, and i am programing a little software to search for a folder and open it.
My problem is i have no idea how to open a folder.
Please help
 
dirnthelord said:
I am using VC++ 2008, and i am programing a little software to search for a folder and open it.
My problem is i have no idea how to open a folder.
Please help

no doubt there's some fancy c++ way to do it - likely available is the plain old c way,. on *nix box type

man 3 opendir

if you can think it someone has likely already written something cool and made it open source,. perhaps find the source code to the *nix utlity called 'find' - that might be a good starting place
 
Back
Top