8 lines
110 B
C++
Raw Normal View History

2025-01-12 20:40:08 +08:00
#include <boost/filesystem.hpp>
int main(void)
{
boost::filesystem::copy_file("a", "b");
return 0;
}