Answers for "How to list all files in a systen with a certain extension in Python"

5

how to search for a specific file extension with python

import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
    print(file)
Posted by: Guest on March-06-2020

Code answers related to "How to list all files in a systen with a certain extension in Python"

Python Answers by Framework

Browse Popular Code Answers by Language