在Python中,rename()方法用于重命名文件或目录。
os.rename(src, dst)
参数
src:这是文件或目录的名称。 它必须已经存在。
dst:更改成的新名称。
示例
import os
os.rename('guru.txt','career.guru.txt')
这是完整的代码
import os
import shutil
from os import path
def main():
# make a duplicate of an existing file
if path.exists("guru.txt"):
# get the path to the file in the current directory
src = path.realpath("guru.txt");
# rename the original file
os.rename('guru.txt','career.guru.txt')
if __name__ == "__main__":
main()