What is the best way to undo the writing to a file? If I'm going through a loop and writing one line at a time, and I want to undo the previous write and replace it with something else, how do I go about doing that? Any ideas?
Thanks in advance!
|
|
|||||||||||||||
|
|
|
Try to write to your files lazily: Don't write until you are finally certain you need to do it. |
||
|
|
as others have noted, this doesn't make much sense, it's far better not to write until you have to. in your case, you can keep the 'writing pointer' one line behind your processing. pseudocode:
as you can see, of course, you could really rollback the file cursor, just keep track of the byte offset where the last line started and then do an |
||
|
|
|
|
As mentioned, you're best off not trying to undo writes. If you really want to do it, though, it's easy enough:
Just record the file position to rewind to, seek back to it, and truncate the file to that position. The major problem with doing this is that it doesn't work on streams. You can't do this to stdout, or to a pipe or TCP stream; only to a real file. |
||
|
|
|
|
If you keep track of the line numbers you can use something like this:
|
||
|
|
|
Perhaps a better thing to do would be to modify your program so that it will only write a line if you are sure that you want to write it. To do that your code would look something like:
|
||
|
|