Advertisement
Brick

Copy File

Jul 11th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. std::copy(
  2.     std::istreambuf_iterator<char>(std::ifstream(from, std::ifstream::binary)),
  3.     std::istreambuf_iterator<char>(),
  4.     std::ostreambuf_iterator<char>(std::ofstream(to, std::ofstream::binary)));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement