ehsanelahimirza
Full Member level 6
foldering in c++
hi
plz tell me how to create folder by using c++ at a specified path
hi
plz tell me how to create folder by using c++ at a specified path
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sreeni said:operating systern is windows XP.
That will surely work in DOS also.
Added after 8 minutes:
It will work in linux also. Here the library to be included in stdlib.h
#include<stdlib.h>
int main()
{
system("mkdir Myfolder");
}