how to check if there are files in a folder python and if not then print filename with extension code example
Example: how to search for a specific file extension with python
import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
print(file)