diff --git a/es-core/src/utils/FileSystemUtil.cpp b/es-core/src/utils/FileSystemUtil.cpp index fbff55145..fdb2ad3da 100644 --- a/es-core/src/utils/FileSystemUtil.cpp +++ b/es-core/src/utils/FileSystemUtil.cpp @@ -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))