mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Merge pull request #8951 from jdgleaver/wii-mkdir-fix
(Wii) Fix recursive path_mkdir() operations
This commit is contained in:
commit
1fea954e5b
@ -205,6 +205,20 @@ bool path_mkdir(const char *dir)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(GEKKO)
|
||||||
|
{
|
||||||
|
size_t len = strlen(basedir);
|
||||||
|
|
||||||
|
/* path_parent_dir() keeps the trailing slash.
|
||||||
|
* On Wii, mkdir() fails if the path has a
|
||||||
|
* trailing slash...
|
||||||
|
* We must therefore remove it. */
|
||||||
|
if (len > 0)
|
||||||
|
if (basedir[len - 1] == '/')
|
||||||
|
basedir[len - 1] = '\0';
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (path_is_directory(basedir))
|
if (path_is_directory(basedir))
|
||||||
norecurse = true;
|
norecurse = true;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user