- #1
Anyname Really
- 2
- 0
- TL;DR Summary
- Is it possible, and if so, in what language, to read a specific line of a file without reading the lines before it?
I would like to read a specific line of a file. Everything I have seen does it by reading the file from the top, ignoring what is read until the line of interest is reached. Is it possible to move the pointer of the reader to the line directly, say by counting the number of line end sequences. Is the problem easier to solve if every line of data has the same format?