玩玩凸玩 2021-04-14 21:46
浏览 17

C语言unix I/O lseek()函数使用问题

/*test.c*/
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>

int main(void)
{
        int fd; 
        char a;
        int nread = 0;
        int n = 0;
    
        fd = open("test.txt", O_RDWR);
        if(fd < 0)
        {   
                perror("openfd");
                exit(-1);
        }   

        n = lseek(fd, 6, SEEK_SET);
//      n = lseek(fd, -4, SEEK_END);
        printf("%d\n",n);

        nread = read(fd, &a, 1); 
        printf("%d\n",nread);
        putchar(a);

        return 0;
}
/*test.txt*/
123456789

运行:

./test.o 
6
1
7

//        n = lseek(fd, 6, SEEK_SET);
          n = lseek(fd, -4, SEEK_END);

运行:

./test.o 
6
0
 

为什么同样的偏移量不同的写法会导致读不到呢?

  • 写回答

1条回答 默认 最新

  • 玩玩凸玩 2022-10-15 08:22
    关注

    读普通文件建议使用fopen,fseek(),这样肯定可以得到偏移量

    评论

报告相同问题?

悬赏问题

  • ¥15 用C语言写离散数学相关问题
  • ¥30 如何用python的GephiStreamer连接到gephi中,把Python和Gephi的具体操作过程都展示,重点回答Gephi软件的调试,以及如果代码的端口在浏览器中无法显示怎么处理
  • ¥15 ansys机翼建模肋参数
  • ¥15 Sumo软件无法运行
  • ¥15 如何在vscode里搭建stata的编辑环境?
  • ¥15 dify知识库创建问题
  • ¥15 如何用C#的chart画1000万个点不卡顿
  • ¥15 爬虫技术找到网上看过房源客户的电话
  • ¥20 代码:Python随机森林反演生物量数据处理问题
  • ¥15 Linux系统的命令行窗口回车变成了换行,无法执行命令了