Holen Sie sich alle Dateien in mehreren Verzeichnissen Python

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