I know you'd say I'm an ameteur, but how do you make sub directories? I've been able to make them with other programming languages.
This is a discussion on Sub Directories within the C++ Programming forums, part of the General Programming Boards category; I know you'd say I'm an ameteur, but how do you make sub directories? I've been able to make them ...
I know you'd say I'm an ameteur, but how do you make sub directories? I've been able to make them with other programming languages.
If you mean adding a subdirectory to your file system, use the system() command.
system(whatever) is basically equivalent to typing whatever at the dos prompt. In this case, you want to use md to make a new subdirectory.
Theres probably a better way tho. Well, maybe.