函式名
pread
功能
帶偏移量地原子的從檔案中讀取數據
函式原型
ssize_t pread(int fd , void * buf , size_t count , off_t offset );
用法
返回值:成功,返回成功讀取數據的位元組數;失敗,返回-1;
參數:
(1) fd:要讀取數據的檔案描述符
(2) buf:數據快取區指針,存放讀取出來的數據
(3) count:讀取數據的位元組數
(4) offset:讀取的起始地址的偏移量,讀取地址=檔案開始+offset。注意,執行後,檔案偏移指針不變
程式實例
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
void main()
{
int fd;
int count = 128;
int offset = 32;
int ret;
char buf[1024];
char pathname[128] = "/tmp/1.txt";
fd = open( pathname, O_RDONLY);
if((ret = pread( fd , buf , count , offset))==-1)
{
printf("pread error\n");
exit(1);
}
else
{
printf("pread success\n");
printf("the read data is:%s\n", buf);
}
}