diff --git a/es-core/src/utils/FileSystemUtil.cpp b/es-core/src/utils/FileSystemUtil.cpp index 3cbb20a1f..0cf054314 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))