summaryrefslogblamecommitdiffstats
path: root/source/cMakeDir.cpp
blob: 478d1d872a24d6f709e68cde0ecf54a79cf36d18 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                              
                                                                            
     
                                                                                    





      

#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( (FILE_IO_PREFIX + a_Directory).c_str(), &Attrib);
#else
	mkdir( (FILE_IO_PREFIX + a_Directory).c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
#endif
}