Seekg
In the C++ programming language, seekg is a function in the iostream
library (part of the standard library) that allows you to seek to an arbitrary position in a file. This function is defined for istream class - for ostream class there's a similar function seekp (this is to avoid conflicts in case of classes that derive both istream and ostream, such as iostream).
istream& seekg ( streampos position ); istream& seekg ( streamoff offset, ios_base::seekdir dir );
position
is the new position in the stream buffer. This parameter is an object of type streampos.offset
is an integer value of type streamoff representing the offset in the stream's buffer. It is relative to thedir
parameter.
dir
is the seeking direction. It is an object of type ios_base::seekdir
that can take any of the following constant values:
ios_base::beg
(offset from the beginning of the stream's buffer).ios_base::cur
(offset from the current position in the stream's buffer).ios_base::end
(offset from the end of the stream's buffer).
Note: If you have previously got an end of file on the stream, seekg
will not reset it but will return an error in many implementations.
- use the clear()
method to clear the end of file bit first. This is a relatively common mistake and if seekg()
is not performing as expected, it is wise to clear the fail bit, as shown below.
Example
#include <fstream> #include <iostream> using namespace std; int main (int argc, char** argv) { // Open a new file for input/output operations discarding any current // content in the file (assumes a length of zero on opening) fstream myFile("test.txt", ios::in | ios::out | ios::trunc); // Add the characters "Hello World" to the file myFile << "Hello World"; // Seek to 6 characters from the beginning of the file myFile.seekg(6, ios::beg); // Read the next 5 characters from the file into a buffer char buffer[6]; myFile.read(buffer, 5); // End the buffer with a null terminating character buffer[5] = 0; // Output the contents read from the file and close it cout << buffer << endl; myFile.close(); }
Example
#include <fstream> #include <iostream> #include <string> using namespace std; int main (int argc, char** argv) { string line; // Creates a new ifstream object and associates it with a file passed in via the parameters // The object is then checked to see if the end-of-file has been reached, if the file has data // then this will be false ifstream myFile(argv[1], ios::in); cout << myFile.eof() << endl; // Continuously loops over each line of the file until the end of the file // Again outputs the end-of-file status for the stream, this time the answer will be true cout << myFile.eof() << endl; // Seeks to the very beginning of the file, clearing any fail bits first (such as the end-of-file bit) myFile.clear(); myFile.seekg(0, ios::beg); // Outputs the status of the stream again, the result will be false cout << myFile.eof() << endl; myFile.close(); }
This article does not cite any external source. HandWiki requires at least one external source. See citing external sources. (2021) (Learn how and when to remove this template message) |
Original source: https://en.wikipedia.org/wiki/Seekg.
Read more |