Is it possible to open a file and reading an only byte at a certain position without having to load all the file into an array?
For example, having a file of 10 bytes, and reading the 5th.
|
|
|
Yes, |
|||||||
|
|
Yes, use istream::seekg to seek to the position you want to read from, and then istream::get to read a byte (or istream::read to read more than one byte). |
|||
|
|