py find all txt files code example
Example 1: how to search for a specific file extension with python
import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
print(file)
Example 2: python glob how to read all txt files in folder
import glob
glob.glob('*.txt')