2 Star 1 Fork 0

creatorliao/自动整理剪辑视频

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tool_remove_ev_in_filename.py 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
creatorliao 提交于 2024-11-25 07:00 . 添加批量整理文件夹的操作
import os
def rename_files_without_ev(folder_path):
"""
遍历指定文件夹中的所有文件,将文件名中包含"_ev"的文件重命名为去掉"_ev"的新文件名。
参数:
folder_path: str - 需要遍历重命名文件的文件夹路径。
返回值:
"""
# 遍历文件夹中的所有文件
for filename in os.listdir(folder_path):
# 检查文件名中是否包含"_ev"
if "_ev" in filename:
# 构建新的文件名,去掉"_ev"
new_filename = filename.replace("_ev", "")
# 获取文件的完整路径
old_file = os.path.join(folder_path, filename)
new_file = os.path.join(folder_path, new_filename)
# 重命名文件
os.rename(old_file, new_file)
print(f"文件已重命名: {old_file} -> {new_file}")
if __name__ == "__main__":
# 你的文件夹路径
folder_path = r"D:\云盘下载\09-共学营"
# 调用函数
rename_files_without_ev(folder_path)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/creatorliao/auto_split_videos.git
[email protected]:creatorliao/auto_split_videos.git
creatorliao
auto_split_videos
自动整理剪辑视频
master

搜索帮助