Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

3 Answers

up vote 3 down vote accepted

How about std::fstream? Open one for reading and another for writing, and use std::copy to let the standard library handle the copying.

Something like this:

void copy_file(const std::string &from, const std::string &to)
{
    std::ifstream is(from, ios::in | ios::binary);
    std::ofstream os(to, ios::out | ios::binary);

    std::copy(std::istream_iterator(is), std::istream_iterator(),
              std::ostream_iterator(os));
}
share|improve this answer

Try using copy_file from boost.

#include <boost/filesystem.hpp>

boost::filesystem::copy_file("c:\\test.txt","d:\\test.txt");

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

share|improve this answer

I like the simple streaming approach, using standard STL operators:

std::ifstream ifs("somefile", std::ios::in | std::ios::binary);
std::ofstream ofs("newfile", std::ios::out | std::ios::binary);
ofs << ifs.rdbuf();

The idea here is that there is an operator<< (streambuf*) for std::ofstream, so you simply pass it the streambuf associated with your input stream.

For completeness, you could do something like the following:

bool exists(const std::string& s) {
    std::ifstream istr(s, std::ios::in | std::ios::binary);
    return istr.is_open();
}

void copyfile(const std::string& from, const std::string& to) {
    if (!exists(to)) {
        std::ifstream ifs(from, std::ios::in | std::ios::binary);
        std::ofstream ofs(to, std::ios::out | std::ios::binary);
        ofs << ifs.rdbuf();
    }
}

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:

if (0 != remove(from.c_str())) {
    // remove failed
}

Aside from using something like boost I'm not convinced there's another standard, portable way to delete a file.

share|improve this answer
Will it works with anyfile or only txt preferences? What if I need to move .mp3 for example from C:\song.mp3 to D:\song.mp3 will it works? – Marius Jan 31 '12 at 15:04
It should work for any file-type. Just in case, I'll alter the example to read the file as binary. – icabod Jan 31 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.