Bear in mind that you can't have the behavior you see with text editors. When writing to a file you always overwrite what is already in the position you're writing to. AFAIK insertion and removal of data in the middle cannot be done directly, and modifying a chunk can be done without side effects only if the new chunk is of the same byte size of the old one (e.g. in this case you should write 93,990 or the last digit of the old string wouldn't be replaced and it would display 93,995).