Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
Source by www.journaldev.com #
 
PREVIOUS NEXT
Tagged: #type #file #file #python
ADD COMMENT
Topic
Name
6+5 =