首页 > 代码库 > cocos2d-x3.2下获取文件夹下所有文件名的方法

cocos2d-x3.2下获取文件夹下所有文件名的方法

这里提供一个函数获取文件夹下所有文件名的方法,直接上代码了。

原文地址:http://blog.csdn.net/qqmcy/article/details/36184733

//
//  VisibleRect.cpp
//  Test890
//
//  Created by 杜甲 on 14-4-28.
//
//
std::vector<std::string> VisibleRect::getFilePathAtVec(std::string filePath)
{
    std::vector<std::string> path_vec;
    
   
    const char* path = filePath.c_str();
    

    
    char *dir = (char*)malloc(filePath.size() + 1);
    
    sprintf(dir,  path);
    
    
    
    DIR *dp;
    struct dirent *entry;
    struct stat statbuf;
    int i=0;
   
    if((dp=opendir(dir))==NULL)
    {
        fprintf(stderr,"cannot open %s",dir);
        exit(1);
    }
    chdir(dir);
    
    while((entry=readdir(dp))!=NULL&&i<255)
    {
        stat(entry->d_name,&statbuf);
        if(!S_ISREG(statbuf.st_mode))
            continue;
        path_vec.push_back(StringUtils::format("%s",entry->d_name));
    }
    return path_vec;
}