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.

Okay so I want to use fstream's (specifically fstream::rdbuf) to copy files to a new location. I have made a couple of tiny programs to move a one-line text file to a different folder however when trying to move a non-text file using the same manner it doesn't work.

Here is my C++ code: (by the way this program should copy my Diablo II save files to a different drive)

cout<< "Creating file variables...\n";\
    ifstream src;
    ofstream dest;
    cout<< "Opening files...\n";
    src.open("B:\\\\Games\\Diablo II\\save\\Degrulo.d2s", fstream::binary);
    dest.open("C:\\\\Games\\Diablo II\\save\\Degrulo.d2s", fstream::binary);
    cout<< "outLoc: C:\\\\Games\\Diablo II\\save\\Degrulo.d2s\nloc: B:\\\\Games\\Diablo II\\save\\Degrulo.d2s\n";

    if (src.is_open() && dest.is_open()) {
        cout<< "Copying files...\n";
        dest << src.rdbuf ();
        cout<< "Finished Copying\nClosing Files...\n";
        src.close();
        dest.close();
        cout<< "Execution complete";
    }

When I run this code the output is "Creating file variables..." and then "Opening files..." but it never shows "Copying files..." suggesting that the files won't open. How can I get this to work?

share|improve this question
1  
Does the output directory exist? – Dave S Sep 21 '12 at 17:07
No it does not...yet. That is what I want the fstream to do. I expected fstream to create the directory if it did not already exist...? – Guitarroka Sep 21 '12 at 17:13
1  
Check src.fail() and dest.fail() to see if the opens succeeded. Or use src.exceptions(ifstream::failbit | ifstream::badbit) (same for dest) to get an exception. – Keith Randall Sep 21 '12 at 17:17
2  
No, while std::fstream will create a file if it exists, the directory must already exist. Currently, the only way to create directories is OS specific or a 3rd party library, such as Boost.Filesystem – Dave S Sep 21 '12 at 17:20
Okay yeah after creating the directory it worked fine thanks :) and i'l take a look at Boost.Filesystem – Guitarroka Sep 21 '12 at 17:30

closed as too localized by Bo Persson, hochl, Florent, vzwick, Lucifer Sep 25 '12 at 12:22

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.