文件拷贝程序(命令行模式,用户交互模式)---C prime plus 13章练习题
2022/1/30 17:11:38
本文主要是介绍文件拷贝程序(命令行模式,用户交互模式)---C prime plus 13章练习题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
//命令行 # include <stdio.h> # include <stdlib.h> # define BUFSIZE 2048 void write_in(FILE* source, FILE* dest); int main(int argc, char* argv[]) { FILE* fa; //一个指向目标文件,一个指向源文件 FILE* fs; int ch; if (argc != 3) { printf("Your argument is wrong.\n"); exit(EXIT_FAILURE); } if ((fs = fopen(argv[1], "rb")) == NULL) //以二进制模式打开文件 { fprintf(stdout, "Can't open the source file %s.\n", argv[1]); exit(0); } if ((fa = fopen(argv[2], "w+b")) == NULL) { fprintf(stdout, "Can't open the aim file %s.\n", argv[2]); exit(0); } while ((ch = getc(fs)) != EOF) putc(ch,fa); puts("DONE."); fclose(fa); //可以添加检测是否关闭了文件的语句 fclose(fs); return 0; }
//交互的方式 # include <stdio.h> # include <stdlib.h> # include <string.h> # include <ctype.h> # define SLEN 20 char* s_gets(char *st, int n); int main() { FILE* fa; //一个指向目标文件,一个指向源文件 FILE* fs; int ch; char source[SLEN]; char target[SLEN]; puts("Enter the name of the source file."); s_gets(source, SLEN); if ((fs = fopen(source, "r")) == NULL) //以文本模式 { fprintf(stdout, "Can't open the source file %s.\n", source); exit(0); } puts("Enter the name of the target file."); s_gets(target, SLEN); if (strcmp(source, target) == 0) { printf("Can't copy the file to himself."); exit(EXIT_FAILURE); } if ((fa = fopen(target, "w+")) == NULL) { fprintf(stdout, "Can't open the target file %s.\n", target); exit(0); } while ((ch = getc(fs)) != EOF) { putc(toupper(ch), fa); //将文本转为大写 } fclose(fs); rewind(fa); while ((ch = getc(fa)) != EOF) putchar(ch); puts("DONE."); fclose(fa); return 0; } char * s_gets(char *st, int n) { char* ret_val; char* find; ret_val = fgets(st, n, stdin); if (ret_val) { find = strrchr(st, '\n'); if (find) *find = '\0'; else while (getchar() != '\n') continue; } return ret_val; }
这篇关于文件拷贝程序(命令行模式,用户交互模式)---C prime plus 13章练习题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器
- 2025-01-01使用 SVN合并操作时,怎么解决冲突的情况?-icode9专业技术文章分享