标签“filesystem”的相关文档,共1条
  • 使用boost中的filesystem类库遍历某个目录所有的文件

    使用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...

    13 KB
确认删除?