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. Sorry not to post example code, I'm a C++ guy and am only just learning Python. I'm sure the other overflowers here would laugh at my pathetic attempt! |
||||
|
|
|
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
|
||
|
|
|
|
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. |
||
|
|
|
|
Do you want to append the text at the end of the file or insert it in the middle? If append, just open the file in append mode:
If you want to insert, you open the file in write mode, then seek to the required position, and finally write to the file. I suggest you check the official docs. |
||
|
|
|
The fileinput module of the Python standard library will rewrite a file inplace if you use the inplace=1 parameter:
|
|||
|
|
