改名移动批量文件 shutil.copy
阅读原文时间:2023年07月10日阅读:1

import glob
import os

import shutil

filePath = 'F:/project/Breast/InBreast/INBreast/imgout/'
newFilePath = 'F:/project/Breast/InBreast/INBreast/imgout1/'

filename = os.listdir(filePath)
for i in filename:
jpg = os.path.join(filePath, i)
print(i[0:8])
# shutil.copy(newFilePath+'/'+i,filePath+'/'+i)
shutil.copy(filePath + '/' + i, newFilePath + '/' + i[0:8]+'.png')

将filepath里面的所有图片拷贝到newfilepath里面

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章