python将目录中的所有文件按照目录的名称+递增数进行重命名

上代码:

# 引入路径控制模块 python 版本要>3.4
from pathlib import Path

dis = Path('写入指定的根目录')  # 指定根目录
pd = ""

count = 0  # 后缀递增变量
for file in dis.rglob("*.jpg"):
    # print(file.absolute())
    # 组织新的文件名称
    cpd = file.parent.absolute()  # 父目录的绝对路径
    if pd == cpd:  # 当是同一个目录,后缀递增
        count += 1
    else:
        pd = cpd  # 反之,重新赋值父目录
        count = 0
    if count != 0:  # 如果count不是第一个 就用count后缀
        # 重新命名
        new_file = file.parent / (file.parent.name + "-" + str(count) + file.suffix)
    else:  # 如果count是第一个,就不加后缀了。
        new_file = file.parent / (file.parent.name + file.suffix)
        
    # 如果文件存在就不管了。防止多次使用的时候,文件窜写
    nf = Path(new_file)  
    if nf.exists():
        print("文件已经存在", nf.absolute())
    else:
        # 重命名文件
        file.rename(new_file)
        print("修改后的名称", new_file)
    # print(file.absolute())

解析
利用rglob,过滤掉得到所有指定的子文件。
利用count来对同一路径下的文件进行序号递增。
通过判断文件是否存在,来避免重复文件使用后产生的bug

你可能感兴趣的:(随笔,python,开发语言)