Answers for "How to recursively search all directory with Glob"

0

How to recursively search all directory with Glob

import glob

# path to search file
path = '.'
for file in glob.glob(path+"/*.html", recursive=True):
    print(file)
Posted by: Guest on August-08-2021

Code answers related to "How to recursively search all directory with Glob"

Browse Popular Code Answers by Language