Showing posts with label make folder. Show all posts
Showing posts with label make folder. Show all posts

6/20/2018

make folder in the c code

simple example code

..
#include <direct.h>

..
string outputFolder = "output";
_mkdir(outputFolder.c_str());
..
..