linux ftell函数(用于得到文件位置指针当前位置相对于文件首的偏移字节数)计算文件的字节大小


一、The ftell() function obtains the current value of the file position indicator for the stream pointed to by stream.用于得到文件位置指针当前位置相对于文件首的偏移字节数。

二、实例测试

1、测试代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <assert.h>

#define FILE_NAME_PATH "ftell_source.txt"

unsigned char read_file_size_content(void)
{
  FILE *fp = fopen(FILE_NAME_PATH, "r");
  char *p;
  if (NULL == fp) {
        goto err1;
    }
  /*获取文件字节大小size*/
  fseek(fp, 0, SEEK_END);
  int size = ftell(fp);//The ftell() function obtains the current value  of  the  file  position indicator for the stream pointed to by stream

  if(size > 0)
  {
      printf("size of the fiel is  %d\n",size);
      p = (char *)calloc((size+1),sizeof(char));
  }
  /*读文件内容并且打印出来*/
  fseek(fp, 0, SEEK_SET);
  fread(p, size, 1, fp);
  fclose(fp);
  p[size] = '\0';
  printf("\nthe content of the file\n%s\n",p);
  free(p);
  return 0;
err1:
  return 1;
}

void main(void)
{
  printf("hello ftell!\n");
  read_file_size_content();
}

   2、ftell_source.txt文件的内容如下

0123456789
tanghanyue

0123456789

  3、编译和执行



 4、测试结果分析,该文件是36个字节,用ftell函数配合fseek函数是可以获取文件字节大小的。


Logo

GitCode 天启AI是一款由 GitCode 团队打造的智能助手,基于先进的LLM(大语言模型)与多智能体 Agent 技术构建,致力于为用户提供高效、智能、多模态的创作与开发支持。它不仅支持自然语言对话,还具备处理文件、生成 PPT、撰写分析报告、开发 Web 应用等多项能力,真正做到“一句话,让 Al帮你完成复杂任务”。

更多推荐