Whats the best way in C# to determine the line endings used in a text file (Unix, Windows, Mac)?
|
|
Notice that text files may have inconsistent line endings. Your program should not choke on that. Using If you manually read lines from a file, make sure to accept any line endings, even if inconsistent. In practice, this is quite easy using the following algorithm:
|
|||
|
|
|
Here is some advanced guesswork: read the file, count CRs and LFs
Also note, that newer Macs (Mac OS X) use Unix line endings |
|||
|
|
|
I'd just search the file for the first |
|||
|
|
|
I would imagine you couldn't know for sure, would have to set this in the editor. You could use some AI, the algorithm would be:
So, for example, if you had repeats of CRLF at 38, 40, 45, and that was within tolerance you'd default to assuming the line end was CRLF. |
|||
|
|
|
If it were me, I'd just read the file one char at a time until I came across the first |
|||
|
|
|
Reading most of textual formats I usually look for \n, and then Trim() the whole string (whitespaces at beginning and end are often redundant). |
|||
|
|
|
There is If it's reading I usually look for |
|||||
|