首页 > 其他 > 详细

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

时间:2014-07-01 15:38:41      阅读:410      评论:0      收藏:0      [点我收藏+]

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

原文地址: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;
}


cocos2d-x3.2下获取文件夹下所有文件名的方法,布布扣,bubuko.com

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!