讯飞星火
Linux C语言中的remove函数用于删除指定的文件或目录。其原型如下:
int remove(const char *pathname);
参数:
- pathname:要删除的文件或目录的路径。
返回值:
- 成功时返回0,失败时返回-1。
相关函数:
- rename:用于重命名文件或目录。
int rename(const char *old_path, const char *new_path);
unlink:用于删除文件。与remove类似,但只能删除文件,不能删除目录。
int unlink(const char *pathname);
rmdir:用于删除空目录。
int rmdir(const char *pathname);
chdir:用于更改当前工作目录。
int chdir(const char *path);
getcwd:用于获取当前工作目录。
char *getcwd(char *buf, size_t size);
标签:const,函数,删除,int,remove,C语言,char,pathname
From: https://blog.csdn.net/eidolon_foot/article/details/141282321