mirror of
https://github.com/boostorg/filesystem.git
synced 2026-01-24 05:52:10 +00:00
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;
|
|
}
|
|
|