summaryrefslogtreecommitdiffstats
path: root/source/cMakeDir.cpp
blob: a28b3a0881246693fd0c7e1ec1224803dc1ef344 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "cMakeDir.h"





void cMakeDir::MakeDir(const AString & a_Directory)
{
#ifdef _WIN32
	SECURITY_ATTRIBUTES Attrib;
	Attrib.nLength = sizeof(SECURITY_ATTRIBUTES);
	Attrib.lpSecurityDescriptor = NULL;
	Attrib.bInheritHandle = false;
	::CreateDirectory(a_Directory.c_str(), &Attrib);
#else
	mkdir(a_Directory.c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
#endif
}