using glob looping through documnets code example
Example: how to loop through glob.iglob iterator
import glob
globIterator = glob.iglob(path, recursive=True)
run = True
while(run == True):
try:
print(next(globIterator))
except:
run = False