Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list #files #folder #subfolders #python
ADD COMMENT
Topic
Name
9+9 =