Obtenez tous les fichiers dans plusieurs répertoires Python

from pathlib import Path
for f in Path().cwd().glob("../*.ext"):
    print(f)
    # do other stuff
Hambo