How do I detect line number while reading a file?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Clay Fulcher
le 14 Juin 2020
Commenté : Clay Fulcher
le 15 Juin 2020
Is there a way to detect the line number while reading a text file? ftell will give a pointer in the file, but not the line number.
Thanks
0 commentaires
Réponse acceptée
per isakson
le 15 Juin 2020
There is no function that takes the output of ftell() and returns the line number.
One has to keep track of the line number with user code. However, that is hard to combine with the use of fseek().
2 commentaires
Walter Roberson
le 15 Juin 2020
The I/O systems used by Windows, Mac, and Linux, do not keep track of the line number. Anything keeping track of the line number would have to be layered on top of the I/O system.
The situation is more tricky than it first appears, since repositioning is permitted, and since it is (generally speaking) permitted to write in the middle of a file (which can change the line numbering for anything after that point), and multiple processes can write into the same file.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Low-Level File I/O dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!