示例:拷贝文件内容

作者:追风剑情 发布于:2020-4-3 11:40 分类:C

示例:将多个文件中的内容拷贝到目标文件中

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. #define BUFSIZE 4096
  7. #define SLEN 81
  8.  
  9. void append(FILE *source, FILE *dest);
  10. char * s_gets(char* st, int n);
  11.  
  12. int main(int argc, char* argv[])
  13. {
  14. FILE *fa, *fs; //fa指向目标文件,fs指向源文件
  15. int files = 0; //附加的文件数量
  16. char file_app[SLEN]; //目标文件名
  17. char file_src[SLEN]; //源文件名
  18. int ch;
  19.  
  20. puts("Enter name of destination file:");
  21. s_gets(file_app, SLEN);
  22. if ((fa = fopen(file_app, "a+")) == NULL)
  23. {
  24. fprintf(stderr, "Can't open %s\n", file_app);
  25. exit(EXIT_FAILURE);
  26. }
  27. //为fa重新分配缓冲区 _IOFBF:在缓冲区满时刷新
  28. if (setvbuf(fa, NULL, _IOFBF, BUFSIZE) != 0)
  29. {
  30. fputs("Can't create output buffer\n", stderr);
  31. exit(EXIT_FAILURE);
  32. }
  33. puts("Enter name of first source file (empty line to quit):");
  34. while (s_gets(file_src, SLEN) && file_src[0] != '\0')
  35. {
  36. if (strcmp(file_src, file_app) == 0)
  37. fputs("Can't append file to itself\n", stderr);
  38. else if ((fs = fopen(file_src, "r")) == NULL)
  39. fprintf(stderr, "Can't open %s\n", file_src);
  40. else
  41. {
  42. if (setvbuf(fs, NULL, _IOFBF, BUFSIZE) != 0)
  43. {
  44. fputs("Can't create input buffer\n", stderr);
  45. continue;
  46. }
  47. append(fs, fa);
  48. if (ferror(fs) != 0)
  49. fprintf(stderr, "Error in reading file %s.\n", file_src);
  50. if (ferror(fa) != 0)
  51. fprintf(stderr, "Error in writing file %s.\n", file_app);
  52. fclose(fs);
  53. files++;
  54. printf("File %s appended.\n", file_src);
  55. puts("Next file (empty line to quit):");
  56. }
  57. }
  58. printf("Done appending. %d files appended.\n", files);
  59. rewind(fa);
  60. printf("%s contents:\n", file_app);
  61. while ((ch = getc(fa)) != EOF)
  62. putchar(ch);
  63. puts("Done displaying.");
  64. fclose(fa);
  65.  
  66. system("pause");
  67. return 0;
  68. }
  69.  
  70. void append(FILE *source, FILE *dest)
  71. {
  72. size_t bytes;
  73. static char temp[BUFSIZE]; //只分配一次
  74. while ((bytes = fread(temp, sizeof(char), BUFSIZE, source)) > 0)
  75. fwrite(temp, sizeof(char), bytes, dest);
  76. }
  77.  
  78. // 自己实现读取函数
  79. char* s_gets(char* st, int n)
  80. {
  81. char* ret_val;
  82. int i = 0;
  83. ret_val = fgets(st, n, stdin);
  84. if (ret_val) //即,ret_val != NULL
  85. {
  86. while (st[i] != '\n' && st[i] != '\0')
  87. i++;
  88. if (st[i] == '\n')
  89. st[i] = '\0';
  90. else
  91. while (getchar() != '\n')
  92. continue;
  93. }
  94. return ret_val;
  95. }

运行测试

222.png

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号