注意空洞文件的自动添0操作-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3976928
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: c/c

2008-05-23 19:35:15

看一个简单的实例(具体的错误处理和更详细的内容没些):

  int           fd;
  uint8_t       buf[4096];

  fd = open("/tmp/rmp/a.rmp", o_creat|o_binary|o_rdwr, 0644); /* 该文件是新建立的 */
  memset(buf, 0xef, sizeof(buf));

  printf("pwrite ret: %d\n", pwrite(fd, buf, 1023, 10));

  printf("pread ret: %d\n", pread(fd, buf, 20, 0));

  mem_dump(buf, 20, 0);

当把20 bytes数据读出来的时候,返回结果为:
pwrite ret: 1023
pread ret: 20
 t 4g m 4k   0- 1- 2- 3- 4- 5- 6- 7- 8- 9- a- b- c- d- e- f  0123456789abcdef
 00000000000 00 00 00 00 00 00 00 00-00 00 ef ef ef ef ef ef  ................
 00000000010 ef ef ef ef                                      ....

原来当文件出现空洞的时候系统为根据文件的块结构适当的把空洞部分补成0, 我测试的文件系统为: ext3, 环境:
linux localhost.localdomain 2.6.23.1-42.fc8 #1 smp tue oct 30 13:55:12 edt 2007 i686 i686 i386 gnu/linux

今天下午就犯过这样的错误, 以为该部分内容为空呢!记住了。
阅读(2260) | 评论(0) | 转发(0) |
0

上一篇:the syntax of ftp urls

下一篇:linux objdump

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图