FileSystem: Fix DeleteDirectory() on Unix
This commit is contained in:
parent
5c099d55da
commit
4d2c544ca9
|
@ -1837,7 +1837,7 @@ bool FileSystem::DeleteDirectory(const char* path)
|
||||||
if (stat(path, &sysStatData) != 0 || !S_ISDIR(sysStatData.st_mode))
|
if (stat(path, &sysStatData) != 0 || !S_ISDIR(sysStatData.st_mode))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return (unlink(path) == 0);
|
return (rmdir(path) == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string FileSystem::GetProgramPath()
|
std::string FileSystem::GetProgramPath()
|
||||||
|
|
Loading…
Reference in New Issue