Answers for "python find file with extension"

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
2

python get file extension from path

import os.path
extension = os.path.splitext(filename)[1]
Posted by: Guest on May-08-2020

Code answers related to "python find file with extension"

Python Answers by Framework

Browse Popular Code Answers by Language