Copying a File in C++, The Easy Way

Just a few days ago I spent way too long looking at the boost libraries to see if there was a way of adapting a std::fstream to an iterator type. I didn't find what I was looking for and did what I wanted a completely different way.

This morning while reading Stroustrup (The C++ Programming Language) I learned that what I was looking for was already built in to the standard library!

Well, after an hour or so of work I eliminated about 40 lines of code, made my code more maintainable and more readable.

As a test case, I put together this little example. The below code is a complete program, it will compile and run and copy "input.txt" to "output.txt".

It works with any file, binary or not (which is why the noskipws is needed). No, it is NOT the most efficient way of doing things, but it shows just how expressive the C++ standard library is.

#include <istream>
#include <iostream>
#include <fstream>
#include <iterator>

using namespace std;

int main()
{
  fstream f("input.txt", fstream::in|fstream::binary);
  f << noskipws;
  istream_iterator<unsigned char> begin(f);
  istream_iterator<unsigned char> end;

  fstream f2("output.txt",
    fstream::out|fstream::trunc|fstream::binary);
  ostream_iterator<char> begin2(f2);

  copy(begin, end, begin2);
}

Comments

thank you it worked :)I was

thank you it worked :)I was searching for this which I could not find it either.

I hope this was just an

I hope this was just an example of using iterators, since copying files can be done much simpler:

#include <fstream>
using namespace std;
int main()
{
  ifstream f1("input.txt", fstream::binary);
  ofstream f2("output.txt", fstream::trunc|fstream::binary);
  f1 << f2.rdbuf();
}

Ok - fixed that for you

#include
using namespace std;
int main()
{
ifstream f1("input.txt", fstream::binary);
ofstream f2("output.txt", fstream::trunc|fstream::binary);
f2 << f1.rdbuf(); <--- not f1 << f2.rdbuf()
}