C ++ ifstream打开很多文件

时间:2014-11-28 06:07:38

标签: c++ ifstream

如果我有大约19个txt文件示例文件名:13.txt我应该如何使用c ++中的easy方法依次打开txt文件。谢谢你解决了这个问题。

2 个答案:

答案 0 :(得分:1)

for(int i = 0; i < 100; ++i)
{
  std::istringstream iss;
  iss << i << ".txt";
  std::ifstream ifs( iss.str().c_str() );
  if(ifs) {
    // Do something with ifs
  }
}

答案 1 :(得分:0)

它非常简单,可以创建ifstream的任意对象,并且需要操作许多文件。这项任务很耗费资源