Merge pull request #370 from tamasszarka/fix_issue_369

Allow recursively creating Windows path to fix #369
This commit is contained in:
Nathan Moinvaziri 2019-03-07 16:30:27 -08:00 committed by GitHub
commit 9c70a4838c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -357,6 +357,10 @@ int32_t mz_os_make_dir(const char *path)
if (CreateDirectoryW(path_wide, NULL) == 0)
{
/* Skip the drive letter when creating a directory recursively */
if ((wcslen(path_wide) == 2) && (path_wide[1] == L':'))
err = MZ_OK;
if (GetLastError() != ERROR_ALREADY_EXISTS)
err = MZ_INTERNAL_ERROR;
}