in reply to Copying binary data efficiently
If all you want to do is change a single byte in a file - rather than copy the file - take a look at seek.
You can use it to move to an arbritary point in a file. You can then just overwrite the byte you want to change rather than copying the whole file.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Copying binary data efficiently
by mildside (Friar) on Jul 30, 2003 at 23:44 UTC |