Dapatkan semua file dalam beberapa direktori Python

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