If I have an opened file, is there an os
call to get the complete path as a string?
f = open('/Users/Desktop/febROSTER2012.xls')
From f
, how would I get "/Users/Desktop/febROSTER2012.xls"
?
And if you just want to get the directory name and no need for the filename coming with it, then you can do that in the following conventional way using os
Python module.
>>> import os
>>> f = open('/Users/Desktop/febROSTER2012.xls')
>>> os.path.dirname(f.name)
>>> '/Users/Desktop/'
This way you can get hold of the directory structure.