in reply to Re: How to check if a file has more than one line?
in thread How to check if a file has more than one line?
That requires reading the whole file. For small files that's not a problem, but as a general thing you should only read as much at a time as you need. For that reason for loops and other techniques that read all the lines of a file into a list or array should be avoided unless you actually need random access to the whole file.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to check if a file has more than one line?
by james28909 (Deacon) on Dec 05, 2014 at 04:14 UTC | |
by GrandFather (Saint) on Dec 05, 2014 at 04:40 UTC |