- fixed: Windows must call the wide version of _mkdir for Unicode support.

This commit is contained in:
Christoph Oelckers 2020-02-25 18:51:42 +01:00
parent 5d6a490846
commit 3a2eaf2bfd

View file

@ -482,7 +482,12 @@ void DoCreatePath(const char *fn)
if ('\0' != *path) if ('\0' != *path)
{ {
DoCreatePath(path); DoCreatePath(path);
#ifdef _WIN32
auto wpath = WideString(path);
_wmkdir(wpath.c_str());
#else
_mkdir(path); _mkdir(path);
#endif
} }
} }