From 1c2ea506f26653adbfff06bd4fceb4ab4b44ec10 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 25 Feb 2020 18:49:24 +0100 Subject: [PATCH] - fixed: Windows must call the wide version of _mkdir for Unicode support. --- source/common/utility/cmdlib.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/common/utility/cmdlib.cpp b/source/common/utility/cmdlib.cpp index 7f5c01c1b..ab7d7f92f 100644 --- a/source/common/utility/cmdlib.cpp +++ b/source/common/utility/cmdlib.cpp @@ -441,7 +441,12 @@ void DoCreatePath(const char *fn) if ('\0' != *path) { DoCreatePath(path); +#ifdef _WIN32 + auto wpath = WideString(path); + _wmkdir(wpath.c_str()); +#else _mkdir(path); +#endif } }