码迷,mamicode.com
首页 > Windows程序 > 详细

获取Windows某一目录下的所有文件名

时间:2017-08-01 19:08:55      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:cpp   windows   closed   line   code   cti   window   class   struct   

#include <sys/types.h>
#include <dirent.h>
 
 
std::vector<std::string> get_all_filename(char* dirname)
{
     DIR *dp;
     struct dirent* dirp;
     std::vector<std::string> filename_vector;
     if((dp = opendir(dirname)) == NULL)
     {
          printf("this dir maybe not exist");
     }
     while((dirp = readdir(dp)) != NULL)
     {
          filename_vector.push_back(dirp->d_name);
     }
     closedir(dp);
     return filename_vector;
}

获取Windows某一目录下的所有文件名

标签:cpp   windows   closed   line   code   cti   window   class   struct   

原文地址:http://www.cnblogs.com/fushou/p/7269951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!