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.
#include<windows.h>
....
...
BOOL CreateDirectory(
LPCTSTR lpPathName, // directory name
LPSECURITY_ATTRIBUTES lpSecurityAttributes // SD
);
example:
CreateDirectory("c:\\my directory", NULL);
or you might also use:
#include<direct.h>
....
...
int _mkdir( const char *dirname );
example:
_mkdir("c:\\my directory")