随机访问文件:fseek()和ftell()

作者:追风剑情 发布于:2020-3-29 23:15 分类:C

示例

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7. //malloc()、free()
  8. #include <stdlib.h>
  9. #include <time.h>
  10. #include <math.h>
  11.  
  12. // DOS文本文件中的文件结尾标记
  13. #define CNTL_Z '\032'
  14. #define SLEN 81
  15.  
  16. //argc: 参数个数 argv[]: 参数数组
  17. //int main(int argc, char **argv)
  18. int main(int argc, char *argv[])
  19. {
  20. char file[SLEN];
  21. char ch;
  22. FILE *fp;
  23. long count, last;
  24.  
  25. puts("Enter the name of the file to be processed:");
  26. scanf("%80s", file);
  27. if ((fp = fopen(file, "rb")) == NULL)
  28. {
  29. printf("reverse can't open %s\n", file);
  30. exit(EXIT_FAILURE);
  31. }
  32.  
  33. /*
  34. fseek(参数1, 参数2,参数2):
  35. 参数2
  36. 该参数表示从起点(即,第3个参数)开始要移动的距离,
  37. 该参数必须是一个long类型的值,可以为正(前移)、
  38. 负(后移)或0(保持不动)。
  39. fseek(fp, 0L, SEEK_SET);//定位至文件开始处
  40. fseek(fp, 10L, SEEK_SET);//定位至文件中的第10个字节
  41. fseek(fp, 2L, SEEK_CUR);//从文件当前位置前移2个字节
  42. fseek(fp, 0L, SEEK_END);//定位至文件结尾
  43. fseep(fp, -10L, SEEK_END);//从文件结尾处回退10个字节
  44. 参数3: 根据ANSI标准,模式常量定义在stdio.h头文件中
  45. SEEK_SET: 文件开始处
  46. SEEK_CUR: 当前位置
  47. SEEK_END: 文件末尾
  48. 旧的实现可能缺少这些定义,可以使用数值0L、1L、2L分别表示这3种模式。
  49. 或者,实现可能把这些明示常量定义在别的头文件中。如果不确定,请查阅手册。
  50. */
  51. int result = fseek(fp, 0L, SEEK_END); //定位到文件末尾
  52. if (0 != result)
  53. {
  54. printf("fseek failure.");
  55. }
  56.  
  57. //ftell()返回当前位置,此函数适用于二进制模式打开文件。
  58. //返回从文件开始处到文件结尾的字节数
  59. last = ftell(fp);
  60. for (count = 1L; count <= last; count++)
  61. {
  62. //从文件结尾处往前读取文件内容,所以第2个参数传负值
  63. fseek(fp, -count, SEEK_END);//回退
  64. ch = getc(fp);//从文件中读取一个字符
  65. if (ch != CNTL_Z && ch != '\r') //MS-DOS文件
  66. putchar(ch);
  67. }
  68. putchar('\n');
  69. fclose(fp);
  70.  
  71. system("pause");
  72. return 0;
  73. }

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号