python get file extension in a folder 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 get file extension from path
import os.path
extension = os.path.splitext(filename)[1]