mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix fs::GetRecursiveSubPaths trying to get directory lists for files
This commit is contained in:
parent
8621e6de5d
commit
33eed6eb84
1 changed files with 3 additions and 1 deletions
|
@ -377,9 +377,11 @@ void GetRecursiveSubPaths(std::string path, std::vector<std::string> &dst)
|
||||||
const DirListNode &n = content[i];
|
const DirListNode &n = content[i];
|
||||||
std::string fullpath = path + DIR_DELIM + n.name;
|
std::string fullpath = path + DIR_DELIM + n.name;
|
||||||
dst.push_back(fullpath);
|
dst.push_back(fullpath);
|
||||||
|
if (n.dir) {
|
||||||
GetRecursiveSubPaths(fullpath, dst);
|
GetRecursiveSubPaths(fullpath, dst);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool DeletePaths(const std::vector<std::string> &paths)
|
bool DeletePaths(const std::vector<std::string> &paths)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue