Re: Appending in between some file

2005-02-25 Thread John W. Krahn
Anish Kumar K. wrote: Hi Hello, I wanted to append some line in between a text file. So what I tried is with the seek command I tried moving the pointer and then do appeding, but for some reason it was not getting appended. I know there are ways to make this task possible. I am afraid abot the

RE: Appending in between some file

2005-02-25 Thread Thomas Bätzler
Anish Kumar K. <[EMAIL PROTECTED]> asked: > I wanted to append some line in between a text file. So what > I tried is with the seek command I tried moving the pointer > and then do appeding, but for some reason it was not getting > appended. When you seek() and write in the middle of a file, it

Appending in between some file

2005-02-24 Thread Anish Kumar K.
Hi I wanted to append some line in between a text file. So what I tried is with the seek command I tried moving the pointer and then do appeding, but for some reason it was not getting appended. I know there are ways to make this task possible. I am afraid abot the memory consumption so I ha