python同时将两个文件夹更改名字
2021/12/12 17:19:51
本文主要是介绍python同时将两个文件夹更改名字,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#### 将一个文件夹内的图片名称随机,对应着另外一个文件中的标签也改为相对应的名字 #coding=utf-8 import os #打开文件时需要 from PIL import Image import re class BatchRename(): def __init__(self): #我的图片文件夹路径 self.path1 = './9-crack760/image/' self.path2 = './9-crack760/mask/' def rename(self): filelist = os.listdir(self.path1) total_num = len(filelist) print(total_num) i = 0 #图片编号从多少开始 for item in filelist: # if item.endswith('.png'): # print(i,item) # i = i + 1 n = 4 - len(str(i)) src1 = os.path.join(os.path.abspath(self.path1), item) dst1 = os.path.join(os.path.abspath(self.path1), 'c9_' + str(0)*n + str(i) + '.png') src2 = os.path.join(os.path.abspath(self.path2), item) dst2 = os.path.join(os.path.abspath(self.path2), 'c9_' + str(0)*n + str(i) + '.png') try: os.rename(src1, dst1) os.rename(src2, dst2) print('converting %s to %s ...' % (src1, dst1)) i = i + 1 except: continue print("total %d to rename & converted %d jpgs" % (total_num, i)) if __name__ == '__main__': demo = BatchRename() demo.rename()
这篇关于python同时将两个文件夹更改名字的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南