I would like to use widely known code snippet to copy file:
std::ifstream src("in");
std::ofstream dest("out");
dest << src.rdbuf();
The question is: how to properly check if copying succeded?
I thought that checking the value of (src && dest) is ok, but it fails in case of empty source file.