Tip: when "\r\n" not working for new-lines when building a file using the .toFile() function

Tip: when "\r\n" not working for new-lines when building a file using the .toFile() function

As above, ran into an issue - "\n" was working for newlines, but "\r\n" was not working for newlines and carriage returns.

Took me a bit but using hexToText("0D0A") in place of "\r\n" resolved this. Including in the forums to save others any drama.