Today we make a program How to create a Folder in c++.it is very Simple and Easy.Now we Try to make it.
How to create a Folder in c++
#include<iostream> #include<conio.h> #include<direct.h> using namespace std; main() { mkdir("D:/myfolder"); return 0; }
You Try To make It And Then Tell us about your result.