vote up 1 vote down star

I'd like to be able to overwrite some bytes at a given offset in a file using Python.

My attempts have failed miserably and resulted :
- either in overwriting the bytes at given offset but also truncating the file just after (file mode = "w" or "w+")
- or in appending the bytes at the end of the file (file mode = "a" or "a+")

Is it possible to achieve it with Python in a portable way ?

TIA for your answers.

flag
This is a duplicate of stackoverflow.com/questions/125703/… – Kena Feb 3 at 21:42
Not really,the one you link is about inserting data and mine is about replacing existing data in place (without rewriting all the file content). – sebastien Feb 4 at 21:45

3 Answers

vote up 7 vote down

Try this:

fh = open("filename.ext", "r+b")
fh.seek(offset)
fh.write(bytes)
fh.close()
link|flag
I confirm that this seems to work (but not necessarily with other file modes than r+) – Kena Feb 3 at 21:48
Will test it ASAP, thks – sebastien Feb 3 at 22:11
@Kena — The "r+" mode specifically means to open the file for (reading and) writing, leave the "pointer" at the beginning of the file, and do not truncate. The "a+" mode should also work for this, as we use seek anyway, but other modes won't. – Ben Blank Feb 3 at 22:35
@Ben Blank: "r+" (better, "r+b") is the answer to this. "a+" would NOT work for this. Whatever the seek, a file opened with "a" or "a+" appends any writes at its end. – ΤΖΩΤΖΙΟΥ Feb 4 at 2:59
@ΤΖΩΤΖΙΟΥ — checks my notes D'oh. Right you are. :-) – Ben Blank Feb 4 at 4:53
show 1 more comment
vote up 2 vote down

According to this python page you can type file.seek to seek to a particualar offset. You can then write whatever you want.

To avoid truncating the file, you can open it with "a+" then seek to the right offset.

link|flag
nice. Good to know stuff. – J.J. Feb 3 at 21:46
Will test it ASAP, thks – sebastien Feb 3 at 22:12
No, the answer is opening with "r+b" (binary since we want to overwrite bytes). A "man 3 fopen", section DESCRIPTION should explain the difference among the available modes. – ΤΖΩΤΖΙΟΥ Feb 4 at 3:02
vote up 0 vote down

Very inefficient, but I don't know any other way right now, that doesn't overwrite the bytes in the middle (as Ben Blanks one does):

a=file('/tmp/test123','r+')
s=a.read()
a.seek(0)
a.write(s[:3]+'xxx'+s[3:])
a.close()

will write 'xxx' at offset 3: 123456789 --> 123xxx456789

link|flag
Since the OP asked how to overwrite bytes, I think that overwriting the bytes is not actually a problem. – John Fouhy Feb 3 at 22:31
Sure? quote: My attempts have failed miserably and resulted [...] either in overwriting the bytes at given offset [...] – Johannes Weiß Feb 4 at 10:19
@Johannes Weiß — You cut that quote off right before the good part. He's lamenting the truncation, not the overwrite. – Ben Blank Feb 4 at 15:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.