Answers for "python get file with specific 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
3

get file extension python

import pathlib

print(pathlib.Path('yourPath.example').suffix) # '.example'
#or 
import os
filename, file_extension = os.path.splitext('/path/to/somefile.ext')
Posted by: Guest on July-01-2021

Code answers related to "python get file with specific extension"

Python Answers by Framework

Browse Popular Code Answers by Language