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