遍历文件
时间:2014-05-01 05:23:07
收藏:0
阅读:310
void listFiles()
{
namespace fs = boost::filesystem;
boost::filesystem::path path=boost::filesystem::current_path();
fs::directory_iterator item_begin(path);
fs::directory_iterator item_end;
for ( ;item_begin != item_end; item_begin ++ )
{
if (fs::is_directory( * item_begin))
{
std::cout << item_begin -> path() << " /t[dir] " << std::endl;
// PrintAllFile( * item_begin);
}
else
{
std::cout << item_begin -> path()<< std::endl;
}
}
评论(0)