I need to replace the a character in a text file with ‘?’. It’s not working as expected.
The file has contents ‘abc’ (without quotes) and i’ve got to use the unix system calls: lseek(), open() and write(). I can’t use the standard C file I/O functions.
The plan is to eventually exand this into a more generalised “find and replace” utility.
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
int main(){
int file = open("data", O_RDWR); //open file with contents 'abc'
lseek(file,0,0); //positions at first char at beginnging of file.
char buffer;
read(file,&buffer, sizeof(buffer));
printf("%c\n", buffer); // text file containing 'abc', it prints 'a'.
if (buffer == 'a'){
char copy = '?';
write(file,©,1); //text file containing 'abc' puts '?' were 'b' is.
}
close(file);
}
The file “data” contains abc, i want to replace a with ? and make it ?bc but i’m getting a?c
read() is reading the right char, but write() is writing to the next char.
Why is this?
Been searching google for hours.
Thanks
The answer is actually embedded in your own code, in a way.
The
lseekcall you do right afteropenis not required because when you firstopena file the current seek offset is zero.After each successful
readorwriteoperation, the seek offset moves forward by the number of bytes read/written. (If you addO_APPENDto youropenthe seek offset also moves just before each write, to the current-end-of-file, but that’s not relevant at this point.)Since you successfully
readone byte, your seek offset moves from 0 to 1. If you want to put it back to 0, you must do that manually.(You should also check that each operation actually succeeds, of course, but I assume you left that out for brevity here.)