0
votes
0answers
9 views

How is std::fstream with both in and out supposed to work?

I've just started wondering - how is actually std::fstream opened with both std::ios::in and std::ios::out actually supposed to work? What should it do? Write something to (for example) an empty file, ...
3
votes
1answer
89 views

unread a file in C++

I am trying to read files that are simultaneously written to disk. I need to read chunks of specific size. If the size read is less than the specific size, I'd like to unread the file (something like ...
0
votes
2answers
53 views

C ++ ifstream I/O?

I'm experimenting with C++ file I/O, specifically fstream. I wrote the following bit of code and as of right now it is telling me that there is no getline member function. I have been told (and ...
1
vote
2answers
64 views

ifstream always returns “ELF” to object

I wrote the following method to check whether my program works correctly with file IO, but it most definitely doesn't work. All that I get from inFile is "ELF", can anyone tell me why? My objects ...
0
votes
4answers
130 views

How to read the whole lines from a file (with spaces)?

I am using STL. I need to read lines from a text file. How to read lines till the first \n but not till the first ' ' (space)? For example, my text file contains: Hello world Hey there If I write ...
0
votes
7answers
224 views

C++ fstream, reading data from text and preforming math operations?

I am at my wits end here. I am writing a program in C++ that will read a text file that contains the following as a brief example: + 23 34 - 9 8 + 100 1 * 8 7 ^ 2 5 / 45 8 The reader will store the ...
0
votes
1answer
325 views

Reading and writing to .dat file

Why does this file always contain an extra Fraction structure? If a user enters option 3 to view all fractions when the program just starts (the file should be empty), 0/0 is printed out. If a user ...
0
votes
2answers
57 views

Issues reading input from a .txt file

I'm working on a project that requires that input must be taken from a file and then processed. We were given a skeleton of the code for opening a file and checking to make sure it is open, but I'm ...
0
votes
3answers
128 views

C++ text document

Its probably an easy answer and i hope its easy to understand my question. I have a text document that has a lot of lines and several paragraphs Is there a way to merge all lines into one single ...
0
votes
1answer
87 views

Interaction between ios::app and an fstream used for input

While debugging someone else's code I came across an interaction between C++'s fstream object, input via the stream operator and ios::app which I was not previously aware of. Assume file.txt exists ...
0
votes
1answer
292 views

File Reading Issue C++ /C#

I have two programs working together to write and read data from a file. The first program is a C# Form. It takes in a file name from the user and writes it out to a file on the C drive and ...
0
votes
1answer
411 views

ifstream read binary data issue 0x00 byte

Hi everyone i have an issue while reading binary data from a binary file as following: File Content: D3 EE EE 00 00 01 D7 C4 D9 40 char * afpContentBlock = new char[10]; ifstream ...
0
votes
1answer
221 views

Ifstream crashes program when opening file

I've narrowed my code down, and I found the source of the problem, it's when I open a file. The file does exists, and I don't get any warning or errors when compiling. int main(int argc, const char* ...
0
votes
2answers
529 views

C++ fstream reading and writing to file

I am completely stuck. This is my incomplete program. The program gets stuck at the.at or if determine if vowel line. I need some advice to fix my program. What the program is supposed to do take a ...
0
votes
1answer
3k views

read space delimited number from file up to newline character

I have a text file that contains the following data. The first line is this: 5 4 3 2 1 The second line is this: 1 2 3 4 5 I am trying to read data from one line at a time because my first ...
1
vote
5answers
226 views

My program always stops working :S (C++)

I made a program to get data from a file, it works, but then the program says it stopped working. Here is my code: #include <stdio.h> #include <windows.h> #include <iostream> using ...
2
votes
5answers
1k views

Process same file in two threads using ifstream

I have an input file in my application that contains a vast amount of information. Reading over it sequentially, and at only a single file offset at a time is not sufficient for my application's ...
1
vote
2answers
346 views

Should I leave a QFile (or fstream) open?

I usually use two methods to write to files, either with Qt's QFile or STL's fstream. I have a long-running (several minutes) simulation which logs data to a file. Performance-wise and design-wise, ...
1
vote
4answers
107 views

Very basic file i/o

Whenever I try to open a file with istream, it doesn't open (is_open() returns false). Is there a specific directory a file needs to be put for it to be accessed (it's in the project's output ...
0
votes
3answers
818 views

Overwrite only a specific part of a file

I know this was asked once, but I didn't understand the answer. Let's say I have a file like this: Guest list: jon mary paul luke Table list: And then, for example, I want to change the names of ...
0
votes
3answers
121 views

Output not matching input C++

I am trying to (right now anyway), to display a maze from a data file. The first grouping of numbers is the size, the second the entrance, and the third are for the exit coordinates. I have a simple ...
2
votes
5answers
1k views

Following use of getline, cannot write to file

I'm building a large file I/O library and am currently struggling with the interoperability of getline() and writing to a file. My question below is alot like this one, which unfortunately remains ...
12
votes
5answers
12k views

How to count lines of a file in C++?

How can I count lines using the standard classes, fstream and ifstream?
1
vote
1answer
301 views

Get FILE* from fstream [duplicate]

Possible Duplicate: Getting a FILE* from a std::fstream Is there a way to obtain a FILE* from an a iostream derived class? Particularly from an fstream?
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. ...
0
votes
4answers
2k views

fstream replace portion of a file

When I do fstream someFile("something.dat", ios::binary|ios::out); someFile.seekp(someLocation, ios::beg); someFile.write(someData, 100); It seems to replace the entire file with those 100 bytes ...