# -*- coding: utf-8 -*-
# Version: Python 3.9.7
# Author: TRIX
# Date: 2021-09-18 11:37:04
# Use: 批量重命名文件目录 将指定文件夹下所有格式为 str1_str2_str3的文件 或 文件夹 重命名为str1Str2Str3
import os
import itertools
rootPath='D:\\[download]\\forTest\\'
def makePaths(root,subFolderName='folderForTest',dirLevel=1,folderCount=1):#新建多级文件夹 用于测试 创建目录 新文件夹名字 新建目录级数 不包含最外层 每层新建文件夹个数
if not os.path.exists(root):
os.mkdir(root)#创建初级目录
prodList=list(itertools.product([str(n+1) for n in range(folderCount)],repeat=dirLevel))#笛卡尔积 repeat 位数
#生成每个目录
for m in range(len(prodList)):
fullDirPart=root#文件夹初级目录
for n in range(dirLevel):#生成第n级目录
fullDirPart+='\\'+subFolderName+''.join(prodList[m][:n+1])#文件夹完整目录
if not os.path.exists(fullDirPart):
os.makedirs(fullDirPart)#创建目录
makePaths(rootPath+'folder_for_test','f_f_t',dirLevel=3,folderCount=3)
def renamePaths(root):
oriDirList=[]
for root, dirs, files in os.walk(root):
#返回该目录内的所有文件名列表 包含所有级目录的元组
#root是文件本身目录 相当于dirname
#dirs_list是该文件夹所有目录名字的列表(不含子目录)
#files_list是该文件夹所有文件名字的列表(不含子目录)
for file in files:#拼接文件目录
oriDirList.append(os.path.join(root, file))
for folder in dirs:#拼接文件夹目录
oriDirList.append(os.path.join(root, folder))
newDirList=[]
for index,oriDir in enumerate(oriDirList):
oriDirPartList=oriDir.split('\\')#将 原路径字符串 按\切分 为列表
oriDirPartList[-1]=oriDirPartList[-1].split('_')#将文件 或 文件夹名 按_切分 为列表
for namePartIndex,namePart in enumerate(oriDirPartList[-1]):
#文件名 str1_str2_str3的文件重命名为str1Str2Str3
oriDirPartList[-1][namePartIndex]=namePart.capitalize()
oriDirPartList[-1]=''.join(oriDirPartList[-1])
newDirList.append('\\'.join(oriDirPartList))
pathZipList=list(zip(oriDirList,newDirList))
pathList=[]
for n in pathZipList:
pathObj=pathClass(n[0], len(n[0].split('\\')),n[1])
pathList.append(pathObj)
pathList=sorted(pathList,key=lambda pathObj:pathObj.oriPathLevel,reverse=True)#以 oriPathLevel 反向排序
for n in pathList:#对每个目录改名
print(n.oriPath,n.newPath,n.oriPathLevel)
os.rename(n.oriPath,n.newPath)#只能对相应的文件进行重命名, 不能重命名文件的上级目录名
class pathClass(object):#路径类
"""docstring for pathClass"""
def __init__(self, oriPath,oriPathLevel,newPath):#原路径 原路径级数 新路径
self.oriPath = oriPath
self.oriPathLevel = oriPathLevel
self.newPath=newPath
renamePaths(rootPath+'folder_for_test')
批量重命名目录-Python程序-效果演示
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:自动完成问卷调查
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Python 函数命名最佳实践
Python 函数命名最佳实践
python Python 内置函数 -
python3 遍历目录、批量重命名、批量拷贝
使用Python遍历目录之后,批量重命名、批量修改文件或目录属性等操作很方便,很适合批量操作。方
python 开发语言 后端 遍历目录 html -
linux下重命名目录下所有文件扩容名
for i in *do mv $i $i.bakdone
linux 扩展名 重命令 -
centos7 重命名目录
一. 文件重命名与移动(mv) 在linux中,重命名文件称为移动(moving)。mv命令可以将文件和目录移动到另一个位置或重新命名。1.1 使用mv重命名 下面在/usr/local下面创建一个空文件为test, 使用mv命令重命名为test1, 查看inode编号和时间将会保持不变,因为mv只影响文件名。如下图所示: 1.2 使用mv移动位置下面使用mv将 local
centos7 重命名目录 linux 文件重命名 linux 查看目录大小 linux 查看进程所在目录 linux 查看进程目录ps -ef