mirror of
https://github.com/boostorg/filesystem.git
synced 2025-05-12 05:31:49 +00:00
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;
|
|
}
|