加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
renamefiles.py 653 Bytes
一键复制 编辑 原始数据 按行查看 历史
sushine 提交于 2022-04-05 11:26 . Initial commit
# -*- coding: UTF-8 -*-
import os
path = input("请输入您想要更改的文件路径(如:图片/音乐等)")
file_list = os.listdir(path) #列出路径下的所有文件
file_list.sort() #按升序进行排序
i = 0
for item in file_list:
if item.endswith(".jpg"):
src = os.path.join(path,item)
dst = os.path.join(os.path.abspath(path),str(i) + ".jpg")
try:
os.rename(src,dst)
print("已将{}重命名为{}".format(src,dst))
i += 1
except Exception as e:
print(e)
print("{}更改失败".format(src))
print("全部文件已重命名完成!")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化