Connecting Tech Pros Worldwide Forums | Help | Site Map

Overwrite just one line? Am I a n00b or is this impossible? Both? :D

Matt@revera
Guest
 
Posts: n/a
#1: Jul 19 '05
I'd like to overwrite just one line of a binary file, based on a
position set by seek(). Is there no way to do this? As far as I can
tell I need to read the whole file, change the line, and write it all
back out. Not exactly easy on the memory, but I see no other solution.

so far:

patchme.seek(offset)
patchme.write(a2b_hex(edit)) # the data is in hex first
patchme.close
print "Patching complete"

This writes the data at the given offset, but _everything_ before it is
filled with 0's.

Sorry for the potentially n00b question, I'm stumped!


Erik Max Francis
Guest
 
Posts: n/a
#2: Jul 19 '05

re: Overwrite just one line? Am I a n00b or is this impossible? Both? :D


Matt@revera wrote:
[color=blue]
> I'd like to overwrite just one line of a binary file, based on a
> position set by seek(). Is there no way to do this? As far as I can
> tell I need to read the whole file, change the line, and write it all
> back out. Not exactly easy on the memory, but I see no other solution.[/color]

You need to find what "just one line" means in a binary format. If the
chunk you're replacing and the chunk you want to replace it with are of
different sizes, then you need to use a temporary file (or read the
remainder of the file in memory).

Otherwise, open the file in read-write binary mode ("r+b") and seek and
write appropriately. In the general case, you need to write to a
temporary file to get the job done.

Memory usage is not a factor, here; read and write the temporary files
in chunks. That way you can manage the memory usage to whatever upper
bound you wish.

--
Erik Max Francis && max@alcyone.com && http://www.alcyone.com/max/
San Jose, CA, USA && 37 20 N 121 53 W && AIM erikmaxfrancis
Be able to be alone. Lose not the advantage of solitude.
-- Sir Thomas Browne
Closed Thread