C++ Program For Copy One File To Another Using File Handling

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    string line;
    //For writing text file
    //Creating ofstream & ifstream class object
    ifstream ini_file {"original.txt"};
    ofstream out_file {"copy.txt"};
    if(ini_file && out_file){
        while(getline(ini_file,line)){
            out_file << line << "\n";
        }
        cout << "Copy Finished \n";
    } else {
        //Something went wrong
        printf("Cannot read File");
    }
    //Closing file
    ini_file.close();
    out_file.close();
    return 0;
}

OUTPUT:

Sharing Is Caring

Leave a Comment