Answers for "python get the extension of a file path"

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
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 get the extension of a file path"

Python Answers by Framework

Browse Popular Code Answers by Language