函数名 : remove
头文件 :<stdio.h>
函数原型 : int remove(char *filename);
功 能 : 删除一个文件
参 数 : char *filename 为要删除的文件名
返回值 :成功 返回0 ,失败 返回非0值
程序例 : 输入文件路径,并删除该文件
#include<stdio.h> int main(void){ char file[80]; printf("File to delete: "); gets(file); if (remove(file) == 0){ printf("Removed %s.\n",file); }else{ perror("remove"); return 0; }
运行结果
File to delete: D:\a.txt Removed D:\a.txt.
什么是单片机?stm32还有arm和51又是什么? 它们是什么关系?一文搞懂它们!
try…catch…finally语句里return语句的执行顺序是怎样的?
如何寻找字符串input中是否有和模式regex匹配的子序列?
try…catch…finally语句中return语句什么时候被执行?