python批量重命名文件【去除前缀】
import os# 输入要重命名的目录path = input('请输入要重命名的目录:')# 获取目录下的所有文件files = os.listdir(path)# 去掉x-前缀并覆盖原文件for file in files: if file.startswith('x-'): new_file = file.replace('x-', '') os.rename(path + '/' + file, path + '/' + new_file).
原创
2022-04-27 15:50:57 ·
2170 阅读 ·
0 评论