Skip to content

Instantly share code, notes, and snippets.

@zhangyuchi
Created September 15, 2017 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhangyuchi/de4742dd0acab76bcbe3aa5a41d3f670 to your computer and use it in GitHub Desktop.
Save zhangyuchi/de4742dd0acab76bcbe3aa5a41d3f670 to your computer and use it in GitHub Desktop.
read file content to string
#include <sstream>
std::ifstream t("file.txt");
std::stringstream buffer;
buffer << t.rdbuf();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment