我想将某些特定的jpg文件复制到另一个目录,但我不明白为什么它不起作用?我的图片很多,并且暂时只想将某些类别的开头名称分别为15_0_xxx.jpg和15_1_xxx.jpg排序
import cv2
import sys
import os
import shutil
from os import listdir
from os.path import isfile, join
mypath = "c:/Users/Harum/Desktop/make dir/"
file_names = [ f for f in listdir(mypath) if isfile(join(mypath, f))]
print(str(len(file_names))+ ' images loaded')
cont_M =0
cont_F =0
m_age = "c:/Users/Harum/Desktop/make dir/M_15/"
f_age = "c:/Users/Harum/Desktop/make dir/F_15/"
input_m = []
input_mS =[]
input_fS =[]
input_f = []
def getZeros(number):
if(number > 10 and number <100):
return "0"
if(number < 10):
return "00"
else:
return ""
for i, file in enumerate(file_names):
if file_names[i][0] == "15_0":
cont_M +=1
image = cv2.imread(mypath+file)
input_m.append(image)
input_mS.append(0)
zeros = getZeros(cont_M)
cv2.imwrite(m_age +"m_age"+str(zeros)+ str(cont_M)+ ".jpg",image)
if file_names[i][0] == "15_1":
cont_F +=1
image = cv2.imread(mypath+file)
input_f.append(image)
input_fs.append(1)
cv2.imwrite(f_age+"F_age"+str(zeros)+ str(cont_M)+ ".jpg",image)
`
问题来源:stackoverflow
*编辑:*忘记了复制部分。你可以为此使用shutil
使用glob和os会更好:
from shutil import copyfile
import glob
import os
mypath = "c:/Users/Harum/Desktop/make dir/"
destination_path = "c:/Users/Harum/Desktop/copy/"
# using fstrings to add wildcard character to consider all files. You could add a
## file extension after, as in f"{mypath}15_\*jpg"
file_names = glob.glob(f"{mypath}15_\*)
# skip the middle to the ifs
# (...)
# removed the enumerate as it doesn't seems like you're using the positional list index
for file in file_names:
# getting only the filename (with extension)
file_name = os.path.basename(file)
# using the str().startswith() to check True or False
if file_name.startswith("15_0"):
cont_M +=1
copyfile(file, f"{destination_path}{file_name}")
# (...)
elif file_name.startswith("15_1"):
cont_F +=1
copyfile(file, f"{destination_path}{file_name}")
#(...)
回答来源:stackoverflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。