珀尔 | rename()函数
Perl 中的 rename()函数将文件的旧名称重命名为用户指定的新名称。
Syntax: rename(old_file_path, new_file_path)
Parameters:
old_file_path: path of the old file along with its name
new_file_path: path of the new file along with its name
Returns
0 on failure and 1 on success
例子:
#!/usr/bin/perl -w
# Calling the rename() function
# with required parameters
rename("D:/GeeksforGeeks/GFG File.txt",
"D:/GeeksforGeeks/GFG File 2.txt") ||
die ( "Error in renaming" );
输出:
原始文件:
运行命令:
更新后的文件: 运行上述代码的步骤:
步骤1:在系统中的任何位置创建一个文件并复制文件路径。
第 2 步:在上面的代码中提供文件的路径并将其保存为 .pl 扩展名。
第 3 步:在命令行中以perl Filename.pl运行上述代码。
第 4 步:现在使用提供的新名称更改文件的名称。