heya gang.
Quick question. In visual basic, you can traverse through files by using FileSystemObject. How do you do this in visual C++?
any help on this would be really great
Thx
Elon
Printable View
heya gang.
Quick question. In visual basic, you can traverse through files by using FileSystemObject. How do you do this in visual C++?
any help on this would be really great
Thx
Elon
Win32Api calls:
FindFirstFile
FindNextFile
FindClose
what about FileSystemObject? I have been told that is an activeX control. How do i include in my C++ proj?
If you are doing your app in c++, write your own fso dude, look into those api functions, most of the file/folder based components of the fso can be written with them.