在Python中,可以使用os
模块的rename()
函数来重命名文件。以下是一个基本的示例:
import os # 原文件的路径 old_file_path = '/path/to/your/old_file_name.txt' # 新文件的路径 new_file_path = '/path/to/your/new_file_name.txt' # 使用os.rename()函数进行重命名 os.rename(old_file_path, new_file_path)
##########################
标签:重命名,文件,old,python,rename,file,path,os From: https://www.cnblogs.com/herd/p/17726618.html