Python recursively find files with specific ext

29

import glob

files = glob.glob(path + "/**/*.txt", recursive = True)

Comments

Submit
0 Comments