2011-10-03 14:41:19 -04:00
|
|
|
#include "cMakeDir.h"
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
//#include <cstring> // If something is missing, uncomment some of these!
|
|
|
|
//#include <cstdlib>
|
|
|
|
//#include <stdio.h>
|
|
|
|
#include <sys/stat.h> // for mkdir
|
|
|
|
//#include <sys/types.h>
|
|
|
|
#else
|
|
|
|
#include <Windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void cMakeDir::MakeDir( const char* a_Directory )
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
SECURITY_ATTRIBUTES Attrib;
|
|
|
|
Attrib.nLength = sizeof(SECURITY_ATTRIBUTES);
|
|
|
|
Attrib.lpSecurityDescriptor = NULL;
|
|
|
|
Attrib.bInheritHandle = false;
|
2011-10-26 09:07:39 -04:00
|
|
|
::CreateDirectory(a_Directory, &Attrib);
|
2011-10-03 14:41:19 -04:00
|
|
|
#else
|
2011-10-26 09:07:39 -04:00
|
|
|
mkdir(a_Directory, S_IRWXU | S_IRWXG | S_IRWXO);
|
2011-10-03 14:41:19 -04:00
|
|
|
#endif
|
|
|
|
}
|