rename函数将文件或目录从旧名称更改为新名称。此操作类似于移动操作。因此,我们也可以使用此rename函数来移动文件。
此函数存在于stdio.h库头文件中。
rename函数的语法如下:
int rename(const char * oldname, const char * newname);
它接受两个参数。一个是oldname,另一个是newname。
这两个参数都是指向常量字符的指针,用于定义文件的旧名称和新名称。
如果文件重命名成功,则返回零;否则,返回非零整数。
在重命名操作期间,如果newname文件已经存在,则用这个新文件替换已经存在的文件。
参考下面给出的算法,使用rename()函数来更改文件名。
步骤1 - 声明变量
步骤2 - 输入旧文件路径
步骤3 - 输入新文件路径
步骤4 - 检查rename(old, new) == 0
If yes print file renamed successfully Else Unable to rename.
以下是使用rename()函数更改文件名的C程序 -
现场演示
#include <stdio.h> int main(){ char old[100], new[100]; printf("Enter old file path: "); scanf("%s", old); printf("Enter new file path: "); scanf("%s", new); if (rename(old, new) == 0){ printf("File renamed successfully.</p><p>"); } else{ printf("Unable to rename files</p><p>"); } return 0; }
当上述程序被执行时,它产生以下结果 −
Run 1: Enter old file path: test.exe Enter new file path: test1.exe File renamed successfully. Run 2: Enter old file path: priya.c Enter new file path: bhanu.c Unable to rename files
以上是C程序使用rename()函数更改文件名的详细内容。更多信息请关注PHP中文网其他相关文章!