(5)關(guān)于Linux系統(tǒng)的lseek函數(shù)誤區(qū)指南(附測試源碼)
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
? ? int fd1,fd2;
? ? int ret;
? ? char buf[128]={0};
? ? fd1 = open("./test_file",O_TRUNC|O_RDWR);
? ? if(-1 == fd1){
? ? ? ? perror("open error");
? ? ? ? return -1;
? ? }
? ? lseek(fd1,0,SEEK_END);? ??
? ? ret = write(fd1,"HELLO WORLD",11);
? ? if (-1 == ret)
? ? {
? ? ? ? perror("write error");
? ? ? ? close(fd1);
? ? ? ? return -1;
? ? }
? ??
? ? fd2 = open("./test_file",O_RDWR);
? ? lseek(fd2,0,SEEK_END);
? ? ret = write(fd2,"My Love",7);
? ? if(-1 == ret)
? ? {
? ? ? ? perror("read error");
? ? ? ? close(fd1);
? ? ? ? return -1;
? ? }
? ? lseek(fd2,0,SEEK_SET);
? ? ret = read(fd2,buf,18);
? ? if(-1 == ret){
? ? ? ? perror("read error");
? ? ? ? close(fd1);
? ? ? ? close(fd2);
? ? ? ? return -1;
? ? }
? ? printf("read is %s\n",buf);
? ? close(fd1);
? ? close(fd2);
}
/*驗證結(jié)論 : 對于lseek函數(shù)。將文件做末尾對齊時 它會從已經(jīng)寫的字節(jié)的開頭開始寫
即 如果你已經(jīng)寫了一些內(nèi)容如下
buf=[HELLO WORLD]
此時再進(jìn)行末尾寫入
得到的結(jié)果為
buf=[HELLO WORLDMy Love]
*/