Tagged Questions
0
votes
2answers
63 views
Reading int from .txt , save it to vector and then save to output file
I've written a mysterious program that it suppose to open and read this .txt
`> krol.txt
3 7
3 13
2 4
3 1
and then save it to vector, do some crazy operation with some algorithms, save it to ...
0
votes
2answers
61 views
Fstream class - issue about' >> ' operator
a simple program that create array with int numbers from .txt file that looks like
2 3
5 7
4 2
y x
y x
...
so it's simple nx2 (where n can be unlimited lines). and then fill new file with that ...
1
vote
2answers
66 views
Is it correct to say that bidirectional file declarations do not set flags implicitly?
This statement here doesn't seem to be correct:
Bidirectional file streams, on the other hand, do not have the flag
set implicitly. This is because a bidirectional stream
does not ...
0
votes
1answer
98 views
C++ ofstream Huge Text File
So, here's my code for a simple part of a class:
void ArrayToTextFile::textfiller(string *givenpointer){
cout<< "Recieved array pointer address" << givenpointer << endl;
...
2
votes
4answers
174 views
What is the difference between flush() and sync() in regard to fstream buffers?
I was reading the cplusplus.com tutorial on I/O. At the end, it says fstream buffers are synchronized with the file on disc
Explicitly, with manipulators: When certain manipulators are used on
...
3
votes
2answers
236 views
C++: What is a stream
I have been hearing about stream, more specifacally file streams.
So what are they?
Is it something that has a location in the memory?
Is it something that contains data?
Is it just a connection ...
0
votes
4answers
207 views
Why include both <iostream> and <fstream> [duplicate]
Possible Duplicate:
Why do I need to include both the iostream and fstream headers to open a file
I wrote this code:
#include <iostream>
int main()
{
std::ofstream ...
0
votes
1answer
64 views
Is there any bug inducing feature when reading and writing using the same fstream object in c++
I am trying to learn C++ fstream, ifstream, ofstream. On Half way through my project I learnt that if we are accessing the same file with ofstream and ifstream for read & write, its better to ...
3
votes
3answers
79 views
Any way to identify a stream?
Is there any way in C++ to identify a file stream? It doesn't really matter what it is, as long as two streams created from the same file have the same "id"; anything that would allow me to say that ...
1
vote
2answers
7k views
Reading popen results in C++
I am writing a C++ application and I need to read the result of a system command.
I am using popen() more or less as shown here:
const int MAX_BUFFER = 2048;
string cmd="ls -l";
char ...
1
vote
4answers
129 views
How to access a specific value in a text file using C++
my text file has this structure and this values
15.32 15.00 14.58 14.36 17.85 01.95 15.36
14.58 21.63 25.00 47.11 48.95 45.63 12.00
74.58 52.66 45.55 47.65 15.55 00.23 78.69
each column is a ...
9
votes
5answers
17k views
std::ofstream, check if file exists before writing
I am writing a save file functionality with Qt application written in C++.
I am looking for a way to check to see if the selected file already exists before writing to it, so that I can prompt a ...
2
votes
1answer
1k views
Why can't I read fstream's binary data with operator>>?
If I do something like the following:
ifstream file;
file.open("somefile", ios::binary);
unsigned int data;
file >> data;
my stream will always flag the fail bit and the data will remain ...
1
vote
4answers
1k views
Deriving from streambuf without rewriting a corresponding stream
Some days ago, I decided that it would be fun to write a streambuf subclass that would use mmap and read-ahead.
I looked at how my STL (SGI) implemented filebuf and realized that basic_filebuf ...
0
votes
2answers
769 views
filebuf in ifstream and ofstream
How can i set a new char array to be the buffer of a fstream's filebuf, there is a function (setbuf) in the filebuf but it is protected. while searching on the web, some sites mention fstream::setbuf ...
0
votes
7answers
1k views
Redirecting C++ fstream
So I have a C++ program, that normally when it executes writes out things to a log file. This is done using an fstream. However, now I want to include functionality to turn the logging off. ...
