I am looking for a way to ensure that the end-of-line style of a file is maintained in python program while reading, editing and writing.
Python has universal file ending support, which can convert all line endings to \n
when the file is read, and then convert them all to the system default when the file is written. In my case I would like to still do the initial conversion, but then write the file with the original EOL style rather than the system default.
Is there a standard way to do this kind of thing? If not, is there a standard way to detect the EOL style of a file?
Assuming that there is no standard way to do this, a possible work flow would be:
Convert all line endings to \n
.
Do stuff with the file.
Convert all line endings to original style.
In this work flow, what is the best way to do step 2?
Use python's universal newline support:
f = open('randomthing.py', 'rU')
fdata = f.read()
newlines = f.newlines
print repr(newlines)
newlines
contains the file's delimiter or a tuple of delimiters if the file uses a mix of delimiters.