2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
#include "cMakeDir.h"
|
|
|
|
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
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
|
2012-01-29 14:28:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|