2018-01-12 21:47:58 +01:00

9 lines
111 B
C++

#include <boost/filesystem.hpp>
int main(void)
{
boost::filesystem::copy_file("a", "b");
return 0;
}