2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 17:23:33 -04:00
|
|
|
#include "MakeDir.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMakeDir::MakeDir(const AString & a_Directory)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
SECURITY_ATTRIBUTES Attrib;
|
|
|
|
Attrib.nLength = sizeof(SECURITY_ATTRIBUTES);
|
|
|
|
Attrib.lpSecurityDescriptor = NULL;
|
|
|
|
Attrib.bInheritHandle = false;
|
2012-08-16 16:28:14 -04:00
|
|
|
::CreateDirectory( (FILE_IO_PREFIX + a_Directory).c_str(), &Attrib);
|
2012-06-14 09:06:06 -04:00
|
|
|
#else
|
2012-08-16 16:28:14 -04:00
|
|
|
mkdir( (FILE_IO_PREFIX + a_Directory).c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
|
2012-06-14 09:06:06 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|