Answers for "python get files in folder with extension"

5

find all files in a directory with extension python

import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
    print(file)
Posted by: Guest on March-06-2020
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 get files in folder with extension"

Python Answers by Framework

Browse Popular Code Answers by Language