Olá eu estou fazendo via colab , e inseri os dados no Drive , porem quando eu rodo o o comando :
if not path.exists(faces_path_treino):
makedirs(faces_path_treino)
if not path.exists(faces_path_teste):
makedirs(faces_path_teste)
for arq in lista_arq_faces:
sujeito = arq[1:3]
numero = arq[4:6]
if int(numero) <= 10:
shutil.copyfile(faces_caminho + arq , faces_path_treino + arq)
else:
shutil.copyfile(faces_caminho + arq , faces_path_teste + arq)
gera o error
FileNotFoundError Traceback (most recent call last)
<ipython-input-50-14a4e7066b6b> in <module>()
6 shutil.copyfile(faces_caminho + arq , faces_path_treino + arq)
7 else:
----> 8 shutil.copyfile(faces_caminho + arq , faces_path_teste + arq)
/usr/lib/python3.7/shutil.py in copyfile(src, dst, follow_symlinks)
118 os.symlink(os.readlink(src), dst)
119 else:
--> 120 with open(src, 'rb') as fsrc:
121 with open(dst, 'wb') as fdst:
122 copyfileobj(fsrc, fdst)
FileNotFoundError: [Errno 2] No such file or directory: '/content/drive/MyDrive/Analise facial/alura-analise-facial-aula_3/imagens/cropped_facess06_12.jpg'