File data insertion and deletion
-
Right now, only one file can be modified. I believe this will be changed in the near future but I would like to bring this other issue up...
It is possible to seek to the middle of a file and replace content of, but there is no method available to insert text at a position, nor is there a way to delete the text that has already been added to the file.(For inserting, it is possible to add a value to a read from an index to the end, then overwrite from that index onwards. However text cannot be removed from the end of the file, only changed...)
Any notes or news of it? Have missed something important regarding this?
-
pianofire posted an approach in this thread:
https://fuzearena.com/forum/topic/70/hints-and-tips/19The technique used in that example is to use the 4 first bytes of the text stream as the length of the "true" file. That way, the file can be "truncated".