python list all files in directory and subdirectories code example
Example 1: python read a directory to get all files in sub folders
import os
path ="C:/workspace/python"
filelist = []
for root, dirs, files in os.walk(path):
for file in files:
filelist.append(os.path.join(root,file))
for name in filelist:
print(name)
Example 2: python list all files in directory
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
Example 3: 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)