Answers for "how to see the path of file in python"

-3

get pyhton file path python

import os

os.path.realpath(__file__)
Posted by: Guest on October-13-2020
-4

get path from file path python

>>> import os
>>> os.path.split(os.path.abspath(existGDBPath))
('T:\\Data\\DBDesign', 'DBDesign_93_v141b.mdb')
Posted by: Guest on February-13-2021

Code answers related to "how to see the path of file in python"

Python Answers by Framework

Browse Popular Code Answers by Language