使用boost中的filesystem类库遍历某个目录所有的文件#include<boost/filesystem/operations.hpp>#include<boost/filesystem/path.hpp>使用boost中的filesystem类库遍历某个目录所有的文件intGetAllFileOfPath(conststringstrPath){namespacefs=boost::filesystem;//得到配置文件夹.if(strPath.size()<2){return0;}fs::pathfull_path(fs::initial_path());full_path=fs::system_complete(fs::path(strPath,fs::native));unsigned...