How to copy a text file into another in C++

2 Answers

0 votes
#include <iostream>
#include <fstream>
#include <string>

using std::cout;
using std::endl;

int main()
{
	std::ifstream ifs("d:\\data.txt");
	std::ofstream ofs("d:\\data.bak");
	std::string text = "";

	for (int i = 0; ifs.eof() != true; i++) 
		text += ifs.get();

	text.erase(text.end() - 1);     

	ifs.close();

	ofs << text;
	ofs.close();

	return 0;
}

/*
run:

data.txt
--------
c c++
c# java php python

data.bak
--------
c c++
c# java php python

*/

 



answered Jun 8, 2018 by avibootz
0 votes
#include <iostream>
#include <fstream>

using std::cout;
using std::endl;

int main()
{
	std::ifstream ifs("d:\\data.txt");
	std::ofstream ofs("d:\\data.bak");

	char ch;
	ifs.unsetf(std::ios::skipws);  
	while (!ifs.eof()) {
		ifs >> ch;
		if (!ifs.eof()) {
			ofs << ch;
		}
	}

	ifs.close();
	ofs.close();

	return 0;
}

/*
run:

data.txt
--------
c c++
c# java php python

data.bak
--------
c c++
c# java php python

*/

 



answered Jun 10, 2018 by avibootz

Related questions

2 answers 204 views
204 views asked Aug 15, 2022 by avibootz
1 answer 191 views
1 answer 200 views
1 answer 183 views
183 views asked Apr 28, 2018 by avibootz
2 answers 248 views
248 views asked Apr 28, 2018 by avibootz
1 answer 167 views
3 answers 339 views
...