The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
46 views

What's wrong with the ifstream seekg

I am trying to do a seek and re-read the data. but the code fails. The code is std::ifstream ifs (filename.c_str(), std::ifstream::in | std::ifstream::binary); std::streampos pos = ifs.tellg(); ...
2
votes
3answers
99 views

Read from file after end-of-file is reached

I have a function named readNextString(ifstream &file , char* &pBuffer) which extracts the next string from a file, until ',' or '\n' is reached, removes whitespace at the beginning and at the ...
1
vote
1answer
75 views

c++ reading from beginning of file to a specified byte

Trying to write a file that reads from the first byte in a file to a byte specified by the user. I need help on the logic. If the file just has letters a through z and I just want to read and display ...
0
votes
1answer
114 views

C++ Reading file backwards from the end of the file

I am trying to write a program with a menu that reads from a text file a few different ways. I'm just working on menu option #2 still (reading backwards from the end of the file), but I can't wrap my ...
1
vote
1answer
55 views

Why seekg does not work with getline?

Seekg does not seem to work, when I reach EOF in myFile. ifstream myFile("/path/file"); for(int i; i < 10; i++){ myFile.seekg(0);//reset position in myFile while(getline(myFile, line)){ ...
2
votes
1answer
343 views

fstream seekg(), seekp(), and write()

I'm looking for some clarification on how seekg() and seekp() works with respect to when you are writing to a file. Say for instance I had a file like so: offset 0: 2 offset 4: 4 offset 8: 6 offset ...
2
votes
2answers
148 views

C++ reading/writing binary mode

I'm learning C++ at school and in my opinion it's a beautiful language, but I have this annoying problem. In the text book it's written with FILE *text and scanf and printf, and I personally don't ...
1
vote
1answer
226 views

Difficulty using file.seekg() (C++)

The following code only prints the file once: #include <iostream> #include <fstream> using namespace std; int main(int argc, const char *argv[]) { ifstream infile; ...
0
votes
1answer
113 views

How does seekg find the end of the file?

In a scenario using seekg & tellg on a file, I was wondering what is happening under the hood? // Open file and get file size int myFileSize; std::fstream myFile; ...
0
votes
2answers
112 views

Why seekg function doesn't work?

Here's the code: #include <iostream> #include <fstream> #include <string> using namespace std; int main(int argc, char *argv[]) { string infile(argv[1]); ifstream ...
8
votes
3answers
303 views

seekg cannot handle file of 4294967295 bytes properly

I found that in VS2010, seekg function does not work properly when file of exactly 4294967295 bytes is opened. I'm using simple code: #include <iostream> #include <fstream> using ...
0
votes
3answers
369 views

Using seekg() when taking input from redirected stdin

So i'm trying to read in a string of characters twice using cin.get(). The input is being redirected as "program < input". So it is valid to use seekg(). As the titel says, I thought I would be ...
0
votes
1answer
333 views

How to read a growing text file in C++?

I am trying to read from a file which is growing (something similar to what tail -F does), but there must be some problems with my code: string log, logFile("test.log"); size_t p = 0; ...
0
votes
1answer
241 views

seekg invalid arguments?

I'm trying to use seekg for the first time. It says in the documentation it's arguments could be: istream& seekg ( streampos pos ); istream& seekg ( streamoff off, ios_base::seekdir dir ); ...
2
votes
2answers
294 views

seekg() function fails

I am trying to write some simple code which will read a text file but reads the first line twice. I thought this would be as simple as something like this std::ifstream file; ...
0
votes
1answer
233 views

cannot update a field of a record in a relative file, C++

After adding records in the relative file, I am trying to update one field (the balance) of a given record(client) that the user provide the account number. The update happens in the file, but it is ...
0
votes
1answer
196 views

C++ seekg to ignore a part of a file?

I have a very simple question in C++. What is the equivalent of x = new char[length]; mystream.read(x, length*sizeof(char)); delete[] x; with seekg to ignore a part of size length of a binary file ...
0
votes
1answer
407 views

seekg and tellg miscompatibility

I am writing a C++ console application. After creating an Matrix with size(int) rowSize and columnSize, I wanted to write the letters in text file to matrix, but while loop never runs because reader's ...
1
vote
1answer
237 views

C++ how to check if a stream (iostream) is seekable

Is there a way I can check if an istream of ostream is seekable? I suspect doing a test seek and checking for failbit is not correct since the seek can fail for unrelated reasons. I need this to ...
0
votes
0answers
292 views

seekg function doesn't work properly

I'm trying to read from file line by line, remembering after reading the line the pointer of last read line by using of function tellg() and than in next section by use of seekg() read first unread ...
2
votes
1answer
261 views

C++ RGB values from pixel selected by user-using seekg

I need to create a program that loads a .raw image (generic 100x100 image), asks the user to select an (x, y) coordinate within the range, and display the red, green, and blue values for said pixel ...
0
votes
1answer
124 views

seekg does not work after while(file.good()) {…}

I'm fairly perturbed that the below does not appear to work. while(myfile.good()) { myfile.get(holdc); .................... } //does not work myfile.seekg(0); ...
1
vote
1answer
177 views

What kinds of input streams can you call seekg on?

I have a function (legacy) that reads the first few lines of a file to determine its type, then closes and reopens the file so it can re-read the entire file using the correct interpreter. The gist ...
4
votes
1answer
734 views

How do I implement seekg() for a custom istream/streambuf?

I used to be a C++ expert a decade ago, but for the past 10 years I've been programming Java. I just started a C++ project that uses a small third-party XML parser. The XML parser accepts an STL ...
0
votes
1answer
1k views

seekg() failing mysteriously

I have a 2884765579 bytes file. This is double checked with this function, that returns that number: size_t GetSize() { const size_t current_position = mFile.tellg(); mFile.seekg(0, ...
1
vote
2answers
418 views

Maintaining a valid position using seekg in ifstreams

I am trying to make my file parsing more robust. Using an ifstream, how can I ensure seekg keeps me in a valid position within the file? This does not work: while(m_File.good() && ...
1
vote
2answers
1k views

Read from same file (until EOF) using ifstream after file contents change

Requirement : I must read until EOF (16 bytes a time) from a particular file , and then say sleep for 5 seconds. Now, after 5 seconds, when I try to read from the file (whose contents ...
0
votes
1answer
332 views

“seekg identifier not found”

I have a program called main: #include<iostream> #include<fstream> using namespace std; #include"other.h" int main() { //do stuff } and then other.h: char* load_data(int ...