数据文件——之重命名或删除文件

代码:

复制代码
 1 //This is c program code!
 2 /* *=+=+=+=+* *** *=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 3   * 文档信息: *** :~/WORKM/stutyCode/cCode/recipesProblemSolution/chapter06/test6_15.c
 4   * 版权声明: *** :(魎魍魅魑)MIT
 5   * 联络信箱: *** :guochaoxxl@163.com
 6   * 创建时间: *** :2020年11月21日的下午07:31
 7   * 文档用途: *** :数据结构与算法分析-c语言描述
 8   * 作者信息: *** :guochaoxxl(http://cnblogs.com/guochaoxxl)
 9   * 修订时间: *** :2020年第46周 11月21日 星期六 下午07:31 (第326天)
10   * 文件描述: *** :自行添加
11  * *+=+=+=+=* *** *+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/
12 #include <stdio.h>
13 
14 int main(int argc, char **argv)
15 {
16     char ch;
17     printf("please select operation: r or d: ");
18     scanf("%c", &ch);
19     int tmp = getchar();                                                                
20     if(ch == 'r'){
21         int ren = rename("kolkata.txt", "city.dat");
22         if(0 == ren){
23             puts("Operation of renaming a file is successful.");
24         }else{
25             puts("Operation of renaming a file is failed!");
26         }
27     }   
28         
29     if(ch == 'd'){
30         int rem = remove("city.dat");
31         if(0 == rem){
32             puts("Operation of deletion a file is successful.");
33         }else{
34             puts("Operation of deletion a file is failed!");
35         }
36     } 
37 
38     return 0;
39 }
复制代码

 

posted @   叕叒双又  阅读(155)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
点击右上角即可分享
微信分享提示