C++目录遍历:使用第三方库boost.filesystem等
生活随笔
收集整理的這篇文章主要介紹了
C++目录遍历:使用第三方库boost.filesystem等
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1. opencv 目錄文件遍歷
注釋:2014 0814 這個代碼是基于java的,Java使用托管代碼進行目錄管理,C++就不那么跨平臺了.
原文鏈接:http://blog.csdn.net/zxlstudio/article/details/10100345
在做圖像處理的時候,可能進行一個文件夾的所有文件的遍歷。
使用c 的文件夾遍歷方式,代碼太難理解,而且如果在windows中使用還需要使用wchar_t寬字符。
opencv本身就有目錄遍歷的類庫,非常方便,我以前還一直傻傻的使用c的方式進行遍歷。
示例代碼:非常簡單的操作
#include "iostream" #include "stdio.h" #include "opencv\cv.h" #include "opencv\highgui.h" #include <opencv2\opencv.hpp> using namespace std; using namespace cv; int main(int argc, char* argv[]) { string dir_path = "C:/Users/zxl/Desktop/XOXO/New folder/"; Directory dir; vector<string> fileNames = dir.GetListFiles(dir_path, "*.jpg", false); for(int i=0; i < fileNames.size(); i++) { string fileName = fileNames[i]; string fileFullName = dir_path + fileName; cout<<"file name:"<<fileName<<endl; cout<<"file paht:"<<fileFullName<<endl; } system("pause"); return 0; } 效果:
2. 用C++遍歷目錄:
http://blog.chinaunix.net/uid-24462747-id-2980901.html
3..使用boost::filesystem實現目錄遍歷
http://blog.sina.com.cn/s/blog_48d4cf2d0100mx4o.html下面的代碼實現了深度優先和廣度優先兩種遍歷方式,可以指定最大遍歷深度,可以指定結果中是否包含子文件夾 ====================================================================== #include <string> #include <vector> #include <deque> #include <utility> #include<boost/filesystem/operations.hpp> #include<boost/filesystem/path.hpp>class file_tool { public:enum traverse_order_t{DEPTH_FIRST = 1,BREADTH_FIRST =2, };enum { UNLIMITED_DEPTH =-1};static bool get_sub_files(conststd::string& path,std::vector<std::string>&files, int max_depth = UNLIMITED_DEPTH, bool include_sub_dirs =false, traverse_order_t order = BREADTH_FIRST){using namespace std;namespace fs =boost::filesystem;typedefstd::pair<string,int> path_and_depth_t; deque<path_and_depth_t> qu;{fs::path root(path);if(!fs::exists(root) ||!fs::is_directory(root)){return false;}if(max_depth <= 0 &&max_depth != UNLIMITED_DEPTH){return true; } fs::directory_iteratorend_iter;for(fs::directory_iteratorfile_itr(root); file_itr != end_iter; ++file_itr){qu.push_back(path_and_depth_t(fs::system_complete(*file_itr).native_directory_string(),1)); } } while (!qu.empty()){path_and_depth_t path_and_depth = (order == DEPTH_FIRST) ?qu.back() : qu.front();string& file_str(path_and_depth.first);int depth= path_and_depth.second;if (order== DEPTH_FIRST){qu.pop_back();}else{qu.pop_front();}fs::path file(file_str);if(fs::exists(file)){if(fs::is_directory(file)){if (include_sub_dirs){files.push_back(file_str); }if (depth <max_depth || max_depth == UNLIMITED_DEPTH){intnext_depth = depth + 1;fs::directory_iteratorend_iter;for(fs::directory_iteratorfile_itr(file); file_itr != end_iter; ++file_itr){qu.push_back(path_and_depth_t(fs::system_complete(*file_itr).native_directory_string(),next_depth)); }}}else{files.push_back(file_str); }} }return true;}};
4.使用boost filesystem遞歸遍歷文件夾
原文鏈接:http://www.th7.cn/Program/cp/2012/02/21/60128.shtml
編譯環境vc 9
#ifndef SCANALLFILES_H #define SCANALLFILES_H #include "boost/filesystem/operations.hpp" #include "boost/filesystem/path.hpp" #include <iostream> using namespace std;class ScanAllFiles{ public:static const vector<string>& scanFiles(const string&,vector<string>&); //方法一,自己寫遞歸,用filesystem里的directory_iteratorstatic const vector<string>& scanFilesUseRecursive(const string&,vector<string>&); //方法二,直接用boost的filesystem里的recursive_directory_iterator }; //方法一,自己寫遞歸 const vector<string>& ScanAllFiles::scanFiles(const string& rootPath,vector<string>& container=*(new vector<string>())){namespace fs = boost::filesystem;fs::path fullpath (rootPath, fs::native);vector<string> &ret = container;if(!fs::exists(fullpath)){return ret;}fs::directory_iterator end_iter; /**無參構造函數是最后那個iterator的value 摘抄如下 *If the end of the directory elements is reached, the iterator becomes equal to the end iterator value. The constructor directory_iterator() with no arguments always constructs an end iterator object, which is the only legitimate iterator to be used for the end condition. The result of operator* on an end iterator is not defined. For any other iterator value a const directory_entry& is returned. The result ofoperator-> on an end iterator is not defined. For any other iterator value a const directory_entry* is returned. * **/for(fs::directory_iterator iter(fullpath);iter!=end_iter;iter++){try{if (fs::is_directory( *iter ) ){std::cout<<*iter << "is dir.whose parent path is " << iter->path().branch_path() << std::endl;ret.push_back(iter->path().string()); //遞歸前push_back進去一個ScanAllFiles::scanFiles(iter->path().string(),ret);//遞歸,把vector也傳進去}else{ret.push_back(iter->path().string());std::cout << *iter << " is a file" << std::endl;}} catch ( const std::exception & ex ){std::cerr << ex.what() << std::endl;continue;}}return ret; } //方法二,直接用boost的filesystem里的recursive_directory_iterator const vector<string>& ScanAllFiles::scanFilesUseRecursive(const string& rootPath,vector<string>& container=*(new vector<string>())){namespace fs = boost::filesystem;fs::path fullpath (rootPath, fs::native);vector<string> &ret = container;if(!fs::exists(fullpath)){return ret;}fs::recursive_directory_iterator end_iter;for(fs::recursive_directory_iterator iter(fullpath);iter!=end_iter;iter++){try{if (fs::is_directory( *iter ) ){std::cout<<*iter << "is dir" << std::endl;ret.push_back(iter->path().string());//ScanAllFiles::scanFiles(iter->path().string(),ret);}else{ret.push_back(iter->path().string());std::cout << *iter << " is a file" << std::endl;}} catch ( const std::exception & ex ){std::cerr << ex.what() << std::endl;continue;}}return ret; } #endif
5.我的代碼:......
6.我的代碼-第二個版本
#include <windows.h>
總結
以上是生活随笔為你收集整理的C++目录遍历:使用第三方库boost.filesystem等的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 哪个牌子的真丝睡衣比较好
- 下一篇: QT+VTK 对接使用