DemianHess
Technical User
I need to read one line of data at a time from some Mac files. Since these files terminate lines with just LF rather than CRLF, I couldn't seem to use the ReadLine method for TextStream objects: this method appears to look for CRLFs, and not just the LF by itself.
What's the standard way of dealing with this? I could read in just one character at a time and check for the LF, but is there a method that would handle this for me?
Thanks for your help!
What's the standard way of dealing with this? I could read in just one character at a time and check for the LF, but is there a method that would handle this for me?
Thanks for your help!