博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从源文件中读出最后10KB内容到目的文件中
阅读量:5991 次
发布时间:2019-06-20

本文共 1155 字,大约阅读时间需要 3 分钟。

hot3.png

#include <stdio.h>

#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>

#define BUFFSIZE 1024
#define offset 10240

int main(int argc,char *argv[])

{
 char buf[BUFFSIZE];
 int src_file,dest_file,real_read_num;
 
 /* check the input */
 if(argc != 3)
 {
  fprintf(stderr,"Usage:./copy_file source_file_name dest_file_name.\n");
  exit(1);
 }
 
 /* open source file for read only*/
 src_file = open(argv[1],O_RDONLY);
 /* open destination file only for write,if the file is not exist,then creat and access mode is 0644 */
 dest_file = open(argv[2],O_WRONLY | O_CREAT,S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 
 /* check open operation is success or not */
 if(src_file < 0 || dest_file < 0)
 {
  perror("open");
  exit(2);
 }

 /* reposition the file pointer to the specified location */

 lseek(src_file,-offset,SEEK_END);

 /* read source file's content and write it to destination file */

 while((real_read_num = read(src_file,buf,BUFFSIZE)) > 0)
 {
  if(write(dest_file,buf,real_read_num) < 0)
  {
   perror("write");
   exit(3);
  }
 }

 close(src_file);

 close(dest_file);
 return 0;
}
 
 

转载于:https://my.oschina.net/tanyouliang/blog/29750

你可能感兴趣的文章
npm package.json文件
查看>>
AngularJs $resource 高大上的数据交互
查看>>
pageX,clientX的区别
查看>>
windows 7接内外网出现冲突
查看>>
容器如何访问外部世界?- 每天5分钟玩转 Docker 容器技术(36)
查看>>
无聊的一天
查看>>
Linux系统工程师的必备素质
查看>>
centos 7 之systemd
查看>>
快速查找算法
查看>>
磨刀不误砍柴工,聊聊旧系统升级改造那些事儿
查看>>
自建yum仓库
查看>>
Jquery
查看>>
mysql常用操作之create、update、drop、truncate等
查看>>
nfs限定挂载过来以后的用户为本地用户
查看>>
我的友情链接
查看>>
Zabbix监控平台汉化修改
查看>>
Android开发——深度毛玻璃效果
查看>>
项目小总结
查看>>
Android之Merge及自定义属性attrs.xml使用
查看>>
我的友情链接
查看>>