Answers for "read file extension python"

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

Python Answers by Framework

Browse Popular Code Answers by Language