加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rename_file.py 1016 Bytes
一键复制 编辑 原始数据 按行查看 历史
zxl 提交于 2024-11-19 19:25 . add
import os
# 指定目录路径
dir_path = '/Users/zxl/视频/小码哥C++编程内功(MJ)'
def remove_char(s, char_to_remove):
return s.replace(char_to_remove, '')
file_count = 0
def rename_files_in_folder(folder_path):
for filename in os.listdir(folder_path):
# 构建原文件名和新文件名
old_file_path = os.path.join(folder_path, filename)
if os.path.isfile(old_file_path):
otherStr = '_【小刀娱乐网www.xiaodao.biz】'
if old_file_path.__contains__(otherStr):
new_file_path = remove_char(old_file_path, otherStr)
# 重命名文件
os.rename(old_file_path, new_file_path)
global file_count
file_count += 1
elif os.path.isdir(old_file_path):
rename_files_in_folder(old_file_path)
# 使用函数,假设你想要重命名"my_folder"路径下的文件
rename_files_in_folder(dir_path)
print('修改文件数量:', file_count)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化