I'm using Python, and would like to insert a string into a text file without deleting or copying the file. How can I do that?
|
|
Unfortunately there is no way to insert into the middle of a file without re-writing it. As previous posters have indicated, you can append to a file or overwrite part of it using seek but if you want to add stuff at the beginning or the middle, you'll have to rewrite it. This is an operating system thing, not a Python thing. It is the same in all languages. What I usually do is read from the file, make the modifications and write it out to a new file called myfile.txt.tmp or something like that. This is better than reading the whole file into memory because the file may be too large for that. Once the temporary file is completed, I rename it the same as the original file. This is a good, safe way to do it because if the file write crashes or aborts for any reason, you still have your untouched original file. |
|||||||
|
|
Depends on what you want to do. To append you can open it with "a":
If you want to preprend something you have to read from the file first:
|
|||||||||||||||||
|
|
Rewriting a file in place is often done by saving the old copy with a modified name. Unix folks add a
Instead of
|
|||
|
|
|
The fileinput module of the Python standard library will rewrite a file inplace if you use the inplace=1 parameter:
|
||||
|
|
|
Python's mmap module will allow you to insert into a file. The following sample shows how it can be done in Unix (Windows mmap may be different). Note that this does not handle all error conditions and you might corrupt or lose the original file. Also, this won't handle unicode strings.
It is also possible to do this without mmap with files opened in 'r+' mode, but it is less convenient and less efficient as you'd have to read and temporarily store the contents of the file from the insertion position to EOF - which might be huge. |
|||
|
|
|
As mentioned by Adam you have to take your system limitations into consideration before you can decide on approach whether you have enough memory to read it all into memory replace parts of it and re-write it. If you're dealing with a small file or have no memory issues this might help: Option 1) Read entire file into memory, do a regex substitution on the entire or part of the line and replace it with that line plus the extra line. You will need to make sure that the 'middle line' is unique in the file or if you have timestamps on each line this should be pretty reliable.
Option 2) Figure out middle line, and replace it with that line plus the extra line.
|
|||
|
|
