summaryrefslogtreecommitdiffstats
path: root/source/OSSupport/MakeDir.cpp
blob: 10ccfe9ec805dc1661681cea0bdd7984ba50683b (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 "MakeDir.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( (FILE_IO_PREFIX + a_Directory).c_str(), &Attrib);
#else
	mkdir( (FILE_IO_PREFIX + a_Directory).c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
#endif
}