import glob # path of the current directory path = '.' curfiles = glob.glob(path + '/*.html') for file in curfiles: print(file) Copy Code