Recursively searching for files by type in a directory and subdirectories searches in a directory as well as within its subdirectories to find files with a specific extension.
Solution for How to recursively search for files by type in a directory and subdirectories in Python : You can use glob.glob() to recursively search for files by type in a directory and subdirectories Call glob.glob(pathname, recursive=True) with pathname as the directory + “/**/*.extension” to recursively search for files with the particular file extension and return the full paths of the files found in a list. The path separator **/ will search every subdirectory and file inside of directory.