Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I insert and delete some characters in the middle of a file?

Tags:

c

file-io

I want to insert and delete some chars in the middle of a file.

fopen() and fdopen() just allow to append at the end.

Is there any simple method or existing library that allow these actions?

like image 654
Infinite Possibilities Avatar asked Mar 12 '10 07:03

Infinite Possibilities


4 Answers

As others have already told you, you have to do it manually, and use fseek in order to get to the place in which you have to insert or add characters. You can easily add new characters in the middle by doing the following:

  1. Go to the last byte of the file, and store the old file size of the file.
  2. Go to where you want to insert the new characters (say this is position): fread (old file size - position) bytes, and store them in a buffer.
  3. fseek to position again.
  4. fwrite your new characters.
  5. fwrite the buffer you previously read.

If you want to delete characters in the middle, then this is more tricky. Actually you cannot make a file shorter. You have two possibilities: in the first one, you just

  1. open the file and read the file skipping the characters you want to delete and store them in a buffer
  2. Close and re-open the file again with "b", so its contents is erased,
  3. Write the buffer and close the file.

In the second possibility, you:

  1. Read to a buffer the characters ahead of the ones you want to delete.
  2. fseek to the beginning of the characters you want to delete
  3. fwrite the buffer.
  4. Trim the rest of the file.

Point four is "tricky", because there is no standard (portable) way to do this. One possiblity is to use the operating system system calls in order to truncate the file. Another, simpler possibility is to just fwrite EOF in point 4. The file will be probably larger than it should be, but it will do the trick.

like image 128
Baltasarq Avatar answered Jan 03 '23 16:01

Baltasarq


Use fseek function to move the file pointer to the appropriate location of the file and then you can perform a write there. But, for this you should know how many bytes from the end or begining of the file your preferred area for write is.

like image 23
Jay Avatar answered Jan 03 '23 18:01

Jay


There is no simple method. You have do it manually. For example:

  1. Read the chunk you want to insert before into memory
  2. Seek forward to new position
  3. Write the chunk you just read at new position
  4. Seek back to where you want to insert
  5. Write the new data.
like image 34
richb Avatar answered Jan 03 '23 16:01

richb


Taking into account what Baltasarq posted, I wrote the following lines. You need to know the position where you want to insert the chars

long Fin;
long lSize;
fseek(fd, 0L, SEEK_END);
Fin = ftell(fd);//get the old file size
fseek(fd, position, SEEK_SET);//"position" must be declared and initialized 
char * buffer;
lSize = Fin - position;//length from where you want to insert the chars to the eof

buffer = (char*) malloc(sizeof(char) * lSize);
size_t result = fread(buffer, 1, lSize, fd);//fread (Fin - position) into buffer
fseek(fd, position, SEEK_SET);//fseek to position

fputs(word, fd);//word is a char pointer that contains the text to be inserted
fputs(buffer, fd);//fwrite the buffer

I actually used this code (after some modifications) to triplicate the words that contain every vowel, in a given file.

like image 26
JS5 Avatar answered Jan 03 '23 18:01

JS5