重命名C / C ++中的函数
C库函数int重命名(constchar*old_filename,constchar*new_filename)导致由old_filename引用的文件名更改为new_filename
以下是rename()
函数的声明。
int rename(const char *old_filename, const char *new_filename)
参数为old_filename-这是包含要重命名和/或移动的文件名的C字符串,new_filename-这是包含该文件的新名称的C字符串。
成功时,返回零。如果出错,则返回-1,并正确设置errno。
示例
#include <stdio.h> int main () { int ret; char oldname[] = "file.txt"; char newname[] = "newfile.txt"; ret = rename(oldname, newname); if(ret == 0) { printf("File renamed successfully"); } else { printf("Error: unable to rename the file"); } return(0); }
让我们假设我们有一个文本文件file.txt,其中包含一些内容。因此,我们将使用上面的程序重命名该文件。让我们编译并运行上述程序以产生以下消息,该文件将重命名为newfile.txt文件。
输出结果
File renamed successfully