리눅스 질문
글쓴이: 익명 사용자 / 작성시간: 일, 2021/04/11 - 1:06오전
fdopen과 lseek를 활용해서 fseek를 구현하려 합니다.
임의로 파일을 생성하고 제가 구현한 프로그램을 돌리고 난 후 ls -l로 파일 사이즈를 확인하는 방식으로 확인하려 했습니다.
파일을 생성하고 Linux라고 입력을 했고 사이즈가 6byte가 나온걸 확인했고
이후에 제 프로그램을 실행시켜 30byte만큼 fseek 하게 하려고 했고 그럼 36byte가 나와야하는데 여전히 6byte가 나오더군요 뭐가 문제일까요
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <fcntl.h> #include <unistd.h> int main(int argc, char *argv[]) { FILE *fp; int fd; int offset; printf("Enter Jumping Bytes : "); scanf("%d",&offset); if(argc != 3) { perror("Parameter Error!\n"); exit(-1); } else { if((fd = open(argv[1], O_RDONLY, 0644)) == -1) { perror("File Open Error!\n"); exit(-1); } if((fp = fdopen(fd, "r")) == NULL) { perror("Stream Creating Error!\n"); exit(1); } if(strcmp(argv[2], "SEEK_SET") == 0) { if(lseek(fd, offset, SEEK_SET) == -1) { perror("lseek Error!\n"); exit(1); } } else if(strcmp(argv[2], "SEEK_CUR") == 0) { if(lseek(fd, offset, SEEK_CUR) == -1) { perror("lseek Error!\n"); exit(1); } } else if(strcmp(argv[2], "SEEK_END") == 0) { if(lseek(fd, offset, SEEK_END) == -1) { perror("lseek Error!\n"); exit(1); } } } fclose(fp); return 0; }
Forums:
질문자임다
사진에 글내용 그대로 한거 있습니다
lseek은 파일 크기를 늘리지 않습니다.
터미널에서 "man lseek" 하거나 구글에 "man lseek"이라고 쳐보면 나옵니다:
> lseek() allows the file offset to be set beyond the end of the file (but this does not change the size of the file). If data is later written at this point, subsequent reads of the data in the gap (a "hole") return null bytes ('\0') until data is actually written into the gap.
아 그렇다면
제가 확인하고 싶었던 것은 lseek로 offset이 이동한 모습인데, lseek로 offset을 저 멀리 이동시켜놓고 만약 거기에 어떤 문자열을 write 해준다면 강제로 파일 사이즈가 늘어날까요?
...
네 그러면 늘어날 겁니다.
write 오류
위의 코드에서 아래에 write하는 부분을 추가하였는데, 이 부분에서 bad file descriptor라고 에러가 뜨는데 이유를 모르겠습니다..
...
구글에 man write라고 친 다음에 첫번째 결과에서 EBADF를 찾아보세요.
bad file descriptor
bad file descriptor
구글에서 찾아보면 힌트가 보일 거예요.
세벌 https://sebuls.blogspot.kr/
댓글 달기