Tagged Questions
0
votes
5answers
159 views
C++: Text File's Extensions? [closed]
When i use text files for input and output using fstream filestream, the file extension used is .txt
I have seen people use instead of .txt:
They use .DAT and still they open it in a text editor as ...
0
votes
2answers
493 views
How can a .txt file be converted to binary file (.dat) with C++ and fstream? [closed]
I'm trying to write a simple program to test user efficiency with a keyboard (just words per minute and accuracy for now) but I'm having difficulty with the file manipulation part. I want to have a ...
0
votes
3answers
81 views
FStream class and using strings as parameters
Deneme::Deneme(string FileName){
fstream textfile;
textfile.open(FileName);
}
This gives me an error, but when I type textfile.open("randomname"); instead of textfile.open(FileName); there ...
2
votes
5answers
382 views
What Makes a Binary Stream Special?
std::fstream has the option to consider streams as binary, rather than textual. What's the difference?
As far as I know, it all depends on how the file is opened in other programs. If I write A to ...
0
votes
2answers
489 views
C++ Read/Write to textfile issue
I need to write numbers and text in a text file, for an unknown reason, the writing works, the reading does not, the problem is reading the text as in the following example:
fstream ff,ff2;
int a,b;
...
0
votes
1answer
557 views
Trying to read text file C++
Using Dev C++, we are trying to get the code to read it one line at a time and store it in an array. We don't seem to get any official errors, but a windows box pops onto the screen to find a solution ...
3
votes
1answer
262 views
Beginner C++ - Opening a text file for reading if it exists, if it doesn't, create it empty
I am writing a high-score sub-routine for a text-based game. Here's what I have so far.
void Game::loadHiScores(string filename)
{
fstream hiscores(filename.c_str()); // what flags are needed?
...