vote up 11 vote down star
2

Given a path such as

"mydir/myfile.txt"

How do I find the absolute filename relative to the current working directory in Python? E.g. on Windows, I might end up with:

"C:/example/cwd/mydir/myfile.txt"
flag

77% accept rate

3 Answers

vote up 19 vote down check
>>> import os
>>> os.path.abspath("mydir/myfile.txt")
link|flag
vote up 4 vote down

Better still, install the path.py module, it wraps all the os.path functions and other related functions into methods on an object that can be used wherever strings are used:

>>> from path import path
>>> path('mydir/myfile.txt').abspath()
'C:\\example\\cwd\\mydir\\myfile.txt'
>>>
link|flag
Too bad they never got a proper filename abstraction module into the stdlib. – Torsten Marek Sep 26 '08 at 12:08
vote up 7 vote down
>>> import os
>>> os.path.abspath('mydir/myfile.txt')
'C:\\example\\cwd\\mydir\\myfile.txt'
>>>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.