I've this simple code:
FILE *fIn;
fIn = fopen("c:\\myFiles\\andrea.txt","r");
My problem is: if 'myFiles' folder doesn't exist, there is a way to create it directly from my C++ code ? And if I have more than one directory in my path, how can I create all of them ?