python dir tous les fichiers

import os

for root, dirs, files in os.walk("."):
    for filename in files:
        print(filename)
Long Lark