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

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

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

[cpp] view plain copy print ?
  1. //  
  2. //  VisibleRect.cpp  
  3. //  Test890  
  4. //  
  5. //  Created by 杜甲 on 14-4-28.  
  6. //  
  7. //  
  8. std::vector VisibleRect::getFilePathAtVec(std::string filePath)  
  9. {  
  10.     std::vector path_vec;  
  11.       
  12.      
  13.     const char* path = filePath.c_str();  
  14.       
  15.   
  16.       
  17.     char *dir = (char*)malloc(filePath.size() + 1);  
  18.       
  19.     sprintf(dir,  path);  
  20.       
  21.       
  22.       
  23.     DIR *dp;  
  24.     struct dirent *entry;  
  25.     struct stat statbuf;  
  26.     int i=0;  
  27.      
  28.     if((dp=opendir(dir))==NULL)  
  29.     {  
  30.         fprintf(stderr,"cannot open %s",dir);  
  31.         exit(1);  
  32.     }  
  33.     chdir(dir);  
  34.       
  35.     while((entry=readdir(dp))!=NULL&&i<255)  
  36.     {  
  37.         stat(entry->d_name,&statbuf);  
  38.         if(!S_ISREG(statbuf.st_mode))  
  39.             continue;  
  40.         path_vec.push_back(StringUtils::format("%s",entry->d_name));  
  41.     }  
  42.     return path_vec;  

你可能感兴趣的:(cocos2d-x,cocos2d-x)