How to make a folder/directory
问题 How do I make a directory/folder with c++. I've tried to use the mkdir() without success. I want to write a program that cin's a variable and then uses this variable to create sub-directory's and files with in those. my current code. It says the + operator in the mkdir() says error no operand char newFolder[20]; cout << "Enter name of new project without spaces:\n"; cin >> newFolder; string files[] = {"index.php"}; string dir[] = {"/images","/includes","/includes/js","/contact","about"}; for