10038.cpp 111 B

12345678
  1. #include <boost/filesystem.hpp>
  2. int main(void)
  3. {
  4. boost::filesystem::copy_file("a", "b");
  5. return 0;
  6. }