1. 程式人生 > >C/C++--C++獲取目錄下的檔案列表

C/C++--C++獲取目錄下的檔案列表

#include   <iostream>  
#include   <io.h>  
#include   <direct.h>  
#include   <string>  
#include   <vector>  
#include   <iomanip>  
#include   <ctime>  
using   namespace   std;  

void getFiles( string, vector<string>& );

int   main()  {  
    vector<string>   files;  

    getFiles( ".", files );

     // print the files get
    for   (int   j=0;   j<files.size();   ++j)  {
        cout   <<   files[j] << endl; 
    }
        
    return   0;  
}

void getFiles( string path, vector<string>& files ) {
    //檔案控制代碼  
    long   hFile   =   0;  
    //檔案資訊  
    struct _finddata_t fileinfo;  

    string p;

    if   ((hFile   =   _findfirst(p.assign(path).append("/*").c_str(),&fileinfo))   !=   -1)  {  

        do  {  
            //如果是目錄,迭代之
            //如果不是,加入列表
            if   ((fileinfo.attrib   &   _A_SUBDIR)) {  
                if   (strcmp(fileinfo.name,".")   !=   0   &&   strcmp(fileinfo.name,"..")   !=   0)  
                    getFiles(   p.assign(path).append("/").append(fileinfo.name), files   );  
            }  else  {  
                files.push_back(   p.assign(path).append("/").append(fileinfo.name)  );
            }  
        }   while   (_findnext(   hFile,   &fileinfo   )   ==   0);  

        _findclose(hFile);  
    }
}
原文地址:http://liyi593730139.blog.163.com/blog/static/1764742472012397200474/