Answers for "get file type python"

2

python get file extension from path

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

how to get what type of file in python

import os

# unpacking the tuple
file_name, file_extension = os.path.splitext("/Users/pankaj/abc.txt")

print(file_name)
#returns abc
print(file_extension)
#returns .txt
Posted by: Guest on September-28-2020
0

how to get what type of file a file is in python

import os

# unpacking the tuple
file_name, file_extension = os.path.splitext("/Users/pankaj/abc.txt")

print(file_name)
#returns abc
print(file_extension)
#returns .txt
Posted by: Guest on August-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language