python trouver des fichiers récursifs

import glob

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