Fixing path generation on the Pi for getDirContents

This commit is contained in:
pjft 2018-03-09 17:06:39 +00:00
parent 566804e682
commit f6649ec070

View file

@ -88,7 +88,7 @@ namespace Utils
// ignore "." and ".."
if((name != ".") && (name != ".."))
{
std::string fullName(path + "/" + name);
std::string fullName(getGenericPath(path + "/" + name));
contentList.push_back(fullName);
if(_recursive && isDirectory(fullName))