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