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