Answers for "python code to get list of files in dir with specific extension"

0

list files in directory python with extension

import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
    print(file)
Posted by: Guest on April-23-2021

Code answers related to "python code to get list of files in dir with specific extension"

Python Answers by Framework

Browse Popular Code Answers by Language