Answers for "get list of all files in folder and subfolders python"

1

get list of all files in folder and subfolders python

for path, subdirs, files in os.walk(root):
    for name in files:
        print os.path.join(path, name)
Posted by: Guest on December-07-2020

Code answers related to "get list of all files in folder and subfolders python"

Python Answers by Framework

Browse Popular Code Answers by Language