Obtenga todos los archivos dentro de múltiples directorios Python
from pathlib import Path
for f in Path().cwd().glob("../*.ext"):
print(f)
# do other stuff
Hambo
from pathlib import Path
for f in Path().cwd().glob("../*.ext"):
print(f)
# do other stuff