Answers for "read all files in dir to list python"

1

python dir all files

import os

for root, dirs, files in os.walk("."):
    for filename in files:
        print(filename)
Posted by: Guest on February-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language