0
How to create folder with C++?
How to create folder with C++?
4 Respuestas
+ 6
You can use the filesystem library from C++17 to create a directory. It implements the create_directory() function for this purpose:
https://en.cppreference.com/w/cpp/filesystem/create_directory
+ 2
system(mkdir "The Folder's Name");
0
What do you mean?
0
I want to create a folder using C ++ language