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?
src.fail()anddest.fail()to see if the opens succeeded. Or usesrc.exceptions(ifstream::failbit | ifstream::badbit)(same for dest) to get an exception. – Keith Randall Sep 21 '12 at 17:17std::fstreamwill 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