my question is how can i create a folder with c++. Thanks for any helps!
this is how far i got:
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream myFile;
myFile.open("C:\\PlatForm.folder", ios::out);
}
return 0;
}