您好,登錄后才能下訂單哦!
小編給大家分享一下python怎么實現多進程按序號批量修改文件名,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
文件名命名方式如圖,是數字序號開頭,但是中間有些文件刪掉了,序號不連續,這里將序號連續起來,總的文件量有40w+,故使用多進程
import os import re from multiprocessing import Pool def getAllFilePath(pathFolder,filter=[".jpg",".txt"]): #遍歷文件夾下所有圖片 result=[] #maindir是當前搜索的目錄 subdir是當前目錄下的文件夾名 file是目錄下文件名 for maindir,subdir,file_name_list in os.walk(pathFolder): for filename in file_name_list: apath=os.path.join(maindir,filename) ext=os.path.splitext(apath)[1]#返回擴展名 if ext in filter: result.append(apath) return result def changName(filePath,changeNum): fileName=os.path.basename(filePath) dirName=os.path.dirname(filePath) pattern = re.compile(r'\d+') if len(pattern.findall(filePath))!=0: numInFileName=str(int(pattern.findall(fileName)[0])-changeNum) newFileName=pattern.sub(numInFileName,fileName) os.rename(filePath,os.path.join(dirName,newFileName)) print('{1} is changed as {0}'.format(newFileName,fileName)) def changeNameByList(fileList,changNum): print('fileList len is:{}'.format(len(fileList))) for fileName in fileList: changName(fileName,changNum) print(fileName,' is done!') if __name__ =='__main__': allFilePath=getAllFilePath(r'E:\Numberdata\4') n_total=len(allFilePath) n_process=8 #8線程 #每段子列表長度 length=float(n_total)/float(n_process) indices=[int(round(i*length)) for i in range(n_process+1)] sublists=[allFilePath[indices[i]:indices[i+1]] for i in range(n_process)] #生成進程池 p=Pool(n_process) for i in sublists: print("sublist len is {}".format(len(i))) p.apply_async(changeNameByList, args=(i,161130)) p.close() p.join()
多進程下python vscode終端debug不報錯 注意可能潛在的bug
os.rename()無法將文件命名成已經存在的文件,否則會報錯
看完了這篇文章,相信你對“python怎么實現多進程按序號批量修改文件名”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。