Python Dir все файлы

import os

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