What does it mean when we read a file in binary?
This is one of the ‘gotchas’ that can impact people when they read files. The underlying commands for loading files in operating systems tend to offer two options:
Read in text mode
Read in binary mode
What text mode does is it will translate newline characters to the local operating system convention for newline characters. See IBM, DOS and Windows Newlines to understand why windows expresses newlines with \r\n
while the rest of the Unix based world uses \n
.
Here’s a code fragment which shows the problem on windows: