Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
432 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 ...
2
votes
1answer
73 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 ...
1
vote
1answer
74 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 ...
1
vote
2answers
311 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
3answers
830 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
0answers
62 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 ...
0
votes
1answer
37 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); ...
0
votes
1answer
742 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, ...
0
votes
1answer
256 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 ...