9 lines
111 B
C++
9 lines
111 B
C++
#include <boost/filesystem.hpp>
|
|
|
|
int main(void)
|
|
{
|
|
boost::filesystem::copy_file("a", "b");
|
|
return 0;
|
|
}
|
|
|