It must be pure c++, I know about system("copy c:\\test.txt d:\\test.txt"); but I think it's the system function, not c++ solution, or I can mistakes?
|
|
|
How about Something like this:
|
||||
|
|
|
Try using
It will throw an exception if there is an error. See this page for more documentation: http://www.boost.org/doc/libs/1_48_0/libs/filesystem/v3/doc/reference.html#copy_file |
||||
|
|
|
I like the simple streaming approach, using standard STL operators:
The idea here is that there is an For completeness, you could do something like the following:
This would only copy the file if the destination didn't already exist. Just an extra check for sanity :) Regarding moving a file, in "standard" C++ I would probably copy the file (as above), and then delete it, doing something like:
Aside from using something like |
||||