Write a program to copy the contents of one file to another
#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
cout << "Cannot read File";
}
//Closing file
ini_file.close();
out_file.close();
return 0;
}
Comments
Leave a comment