firstly i want you all to pardon my lack of proper terminology, i'm a c++ newby!
how do i make a directory in c++? (i program in the c++ that is in dos)
sorry if i'm being vauge,
Rhoads
Printable View
firstly i want you all to pardon my lack of proper terminology, i'm a c++ newby!
how do i make a directory in c++? (i program in the c++ that is in dos)
sorry if i'm being vauge,
Rhoads
I'm sure there is a better way but this works:
Code:#include <stdlib.h>
...
system("mkdir asdf");
thanks