This is the source code for making the folder using c++:
in this code, I use my "D drive path" to save the new folder make. You can store this new folder in any drive you want by giving the address in parentheses.
#include<iostream.h>
#include<conio.h>
#include<direct.h>
main()
{
mkdir("D:/myfolder");
return 0;
}
End
we recommend to you
how to delete a folder using c++
how to shut down your computer using c++