show/hide this revision's text 3 added 3 characters in body

C++

There are many ways, you pick which is the most elegant for you.

Reading into char*:

ifstream file ("file.txt", ios::in|ios::binary|ios::ate);
if (file.is_open())
{
    size = file.tellg();
    char *contents = new char [size];
    file.seekg (0, ios::beg);
    file.read (memblock, contents, size);
    file.close();
}

Into std::string:

std::ifstream in("file.txt");
std::string contents(std::istreambuf_iterator<char>(in), 
    contents((std::istreambuf_iterator<char>(in)), 
    std::istreambuf_iterator<char>());

Into vector<char>:

std::ifstream in("file.txt");
std::vector<char> contents(std::istreambuf_iterator<char>(i n),
    contents((std::istreambuf_iterator<char>(in)),
    std::istreambuf_iterator<char>());

Into std::string, using std::stringstream:

std::ifstream in("file.txt");
std::stringstream buffer;
buffer << in.rdbuf();
std::string contents(buffer.str());

file.txt is just an example, everything works fine for binary files as well, just make sure you use ios::binary in ifstream constructor.

Writing goes the other way around and uses ofstream instead.

show/hide this revision's text 2 added 69 characters in body

C++

There are many ways, you pick which is the most elegant for you.

Reading into char*:

ifstream file ("file.txt", ios::in|ios::binary|ios::ate);
if (file.is_open())
{
    size = file.tellg();
    char *contents = new char [size];
    file.seekg (0, ios::beg);
    file.read (memblock, size);
    file.close();
}

Into std::string:

std::ifstream in("file.txt");
std::string contents(std::istreambuf_iterator<char>(in), 
    std::istreambuf_iterator<char>());

Into vector<char>:

std::ifstream in("file.txt");
std::vector<char> contents(std::istreambuf_iterator<char>(i n),
    std::istreambuf_iterator<char>());

Into std::string, using std::stringstream:

std::ifstream in("file.txt");
std::stringstream buffer;
buffer << in.rdbuf();
std::string contents(buffer.str());

file.txt is just an example, everything works fine for binary files as well, just make sure you use ios::binary in ifstream constructor.

Writing goes the other way around and uses ofstream instead.

show/hide this revision's text 1

C++

There are many ways, you pick which is the most elegant for you.

Reading into char*:

ifstream file ("file.txt", ios::in|ios::binary|ios::ate);
if (file.is_open())
{
    size = file.tellg();
    char *contents = new char [size];
    file.seekg (0, ios::beg);
    file.read (memblock, size);
    file.close();
}

Into std::string:

std::ifstream in("file.txt");
std::string contents(std::istreambuf_iterator<char>(in), 
    std::istreambuf_iterator<char>());

Into vector<char>:

std::ifstream in("file.txt");
std::vector<char> contents(std::istreambuf_iterator<char>(i n),
    std::istreambuf_iterator<char>());

Into std::string, using std::stringstream:

std::ifstream in("file.txt");
std::stringstream buffer;
buffer << in.rdbuf();
std::string contents(buffer.str());

file.txt is just an example, everything works fine for binary files as well, just make sure you use ios::binary in ifstream constructor.