函数移动字母c语言,C语言lseek()函数:用于移动打开文件的指针

函数名:lseek

头文件:

函数原型: int lseek(int handle,long offset,long length);

功能:用于移动打开文件的指针

参数:int handle  为要移动文件指针的文件句柄

long offset 为要移动的偏移量

int fromwhere 为文件指针以什么方向计算偏移量。

有三个取值分别为:

SEEK_SET  文件的开头

SEEK_CUR 文件的当前位置

SEEK_END  文件的末尾

返回值:移动文件指针后的文件指针位置

程序例:创建文件,内容为I like www.dotcpp.com very much!//打开文件,跳过7个字节,取14个字符。

#include

#include

#include

int main(void){

int fd=open("D:\\a.txt",O_RDONLY);

if(fd==-1){

printf("can not open the file\n");

return 1;

}

int pos=tell(fd);

printf("before lseek function,current position: %ld\n",pos);

lseek(fd,7,SEEK_SET);  //移动到以文件的开头偏移7个字节的位置

char buf[20]={"\n"};

read(fd,buf,14);

printf("the res is %s\n",buf);

pos=tell(fd);

printf("after lseek function,current position: %ld\n",pos);

close(fd);

return 0;

}

运行结果before lseek function,current position: 0

the res is www.dotcpp.com

after lseek function,current position: 21

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值