Reading files larger than 4GB using c++ stl

后端 未结 5 1030
离开以前
离开以前 2020-12-03 02:04

A few weeks back I was using std::ifstream to read in some files and it was failing immediately on open because the file was larger than 4GB. At the time I couldnt find a de

5条回答
  •  情歌与酒
    2020-12-03 02:18

    If you can move yourself away from using only standard C++, then you might be interested in boost::iostreams.

提交回复
热议问题