diff --git a/cocos/platform/android/CCFileUtils-android.cpp b/cocos/platform/android/CCFileUtils-android.cpp index ed5552b538..66bf4f3048 100644 --- a/cocos/platform/android/CCFileUtils-android.cpp +++ b/cocos/platform/android/CCFileUtils-android.cpp @@ -332,7 +332,7 @@ std::vector FileUtilsAndroid::listFiles(const std::string& dirPath) { string filepath(tmpDir); if(isDirectoryExistInternal(filepath)) filepath += "/"; - fileList.push_back(filepath); + fileList.push_back(fullPath + filepath); } AAssetDir_close(dir); return fileList;