mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Merge pull request #370 from tamasszarka/fix_issue_369
Allow recursively creating Windows path to fix #369
This commit is contained in:
commit
9c70a4838c
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user