I need to find all the path of some images .jpg but i can´t find them.
You can look at this image where I have my files .jpg: path of images
and I am using this python code:
session_path = "content/drive/My Drive/face"
import os
import re
from glob import glob
result = [y for x in os.walk(session_path) for y in glob(os.path.join(x[0], '*.jpg'))]
result
but result is an empty array: []