I'm aware of Issue #87 on read_csv(), and it's correct that write functions use the same terminator, but sometimes you need to write a file for another program, that only understands CRLF lines.
So I would like to be able to specify a CRLF line terminator as an option on write functions.
Meanwhile, the hackish way :
> write_lines(paste0(vData, "\r"), filePath))
Thanks for the great package.
I'm aware of Issue #87 on read_csv(), and it's correct that write functions use the same terminator, but sometimes you need to write a file for another program, that only understands CRLF lines.
So I would like to be able to specify a CRLF line terminator as an option on write functions.
Meanwhile, the hackish way :
> write_lines(paste0(vData, "\r"), filePath))
Thanks for the great package.