Answers for "how to get file extention in python using os"

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 "how to get file extention in python using os"

Python Answers by Framework

Browse Popular Code Answers by Language