拷贝文件内容到另一个文件

作者:追风剑情 发布于:2020-3-25 14:47 分类:C

示例:

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. #define LEN 40
  7.  
  8. int main(int argc, char* argv[])
  9. {
  10. FILE* in, * out;
  11. int ch;
  12. char name[LEN];
  13. int count = 0;
  14.  
  15. // 检查命令行参数
  16. if (argc < 2)
  17. {
  18. fprintf(stderr, "Usage: %s filename\n", argv[0]);
  19. exit(EXIT_FAILURE);
  20. }
  21.  
  22. // 设置输入
  23. // 以读模式打开文件
  24. if ((in = fopen(argv[1], "r")) == NULL)
  25. {
  26. fprintf(stderr, "I couldn't open the file \"%s\"\n", argv[1]);
  27. exit(EXIT_FAILURE);
  28. }
  29.  
  30. // 设置输出
  31. strncpy(name, argv[1], LEN - 5); // 拷贝文件名
  32. name[LEN - 5] = '\0';
  33. strcat(name, ".red"); //在文件名后添加.red
  34. // 以写模式打开文件
  35. if ((out = fopen(name, "w")) == NULL)
  36. {
  37. fprintf(stderr, "Can't create output file.\n");
  38. exit(3);
  39. }
  40. // 拷贝数据
  41. while ((ch = getc(in)) != EOF)
  42. {
  43. if (count++ % 3 == 0)
  44. putc(ch, out); //打印3个字符中的和1个字符
  45. }
  46.  
  47. // 收尾工作
  48. if (fclose(in) != 0 || fclose(out) != 0)
  49. fprintf(stderr, "Error in closing files\n");
  50.  
  51. system("pause");
  52. return 0;
  53. }

运行测试

11111.png

222.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号