python find folder in directory and subdirectories code example
Example 1: python get all file names in a dir
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
Example 2: how to get all folders on path in python
os.walk(directory)
[x[0] for x in os.walk(directory)]