- 论坛徽章:
- 3
|
朋友真是一针见血啊 {:3_182:}
第一点 的确是我疏忽了,这个老接口被后来的OPEN给兼容了,我以为参数也是一致的^_^
第二点 我更没留意了,嘿
原因找出来了,应该就是因为creat返回的FD是只写的,对于读接口来说是非法的,所以如果为读专门open一次,返回一个供read的FD,应该就没问题了。总之是由于读写共用一个FD,搞混乱了。。。如果在之前的基础上稍微改一下,应该还是行得通的 嘿
int fd,byteswrite,bytesread;
char buf[256];
int length;
memset(buf,0,256);
strcpy(buf,"hello ,this is a test" ;
length = strlen(buf);
// fd = creat("test.txt", S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
fd = open("test.txt",O_CREAT|O_TRUNC|O_RDWR,0666);
byteswrite = write (fd,buf,length);
printf("byteswrite is %d \n",byteswrite);
if(fsync(fd)==-1)
printf("fsync error\n" ;
struct stat stat_buf;
int ret;
ret = fstat(fd,&stat_buf);
if(ret == -1){
printf("%s \n",strerror(errno));
exit(1);
}
memset(buf,0,256);
printf(" fd : %d \n",fd);
//close(fd);
//fd = open("test.txt",O_RDWR,0);
int offset;
offset = lseek(fd,0,SEEK_CUR);
printf(" offset : %d \n",offset);
offset = lseek(fd,(-1)*offset,SEEK_CUR);
if(offset == -1){
printf("%s \n",strerror(errno));
exit(1);
}
bytesread = read(fd,buf,length);
if(bytesread == -1){
printf("%s \n",strerror(errno));
exit(1);
}
printf("bytesread is %d \n",bytesread);
printf("read result is %s\n",buf);
多谢朋友指正 |
|