发新帖

[C/VC/C++] C++ ifstream 读取文件

零下一度 2019-9-26 1001
  std::string Filesystem::Content(const std::string & path)
	{
		std::ifstream ifs(path, std::ios::binary);

		if (ifs.is_open())
		{
			std::string str((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));

			ifs.close();

			return str;
		}
		else
		{
			throw std::runtime_error("Failed open file : [" + path + "]");
		}
	}


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1