Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

__file__ is sometimes absolute, sometimes relative

12 views
Skip to first unread message

Sébastien Barthélemy

unread,
Oct 1, 2010, 7:00:10 AM10/1/10
to pytho...@python.org
Hello,

I use a data file that lies on disk in the same directory that the
module which makes use of it.

The data file is checked in the repository and gets installed by
the distutils ``package_data`` directive, so it is in place both
during development and after and install.

In my program, I need to find the absolute path to this data file.

I could think of 3 ways to do this:
1. using the __path__ property in the module
2. using __file__ property in the module
3. using __file__ and os.getcwd() in the module

The first option does not work, because __path__ is initialised after the
module is loaded (apparently).

Solution 2 works, but behaves differently when ran from python or
from a doctest file. The path in __file__ is absolute if the program
is ran directly by ``python``, and relative if it is ran by
``python -m doctest``.

Solution 3 works. However if there is a better way to do this, please let me
know.

I could not find anything documenting what the proper value for __file__
should be. Maybe my problem with solution 2 is a bug in doctest or runpy?

I put up a simple example exhibiting the problem.

Here are the results on my mac (using python from macport)
I get the same results using python 2.6, 2.7 and 3.1

$ python2.6 test.py
/Users/seb/Devel/arboris-python/src/pyfile
/Users/seb/Devel/arboris-python/src/pyfile/mod.pyc
/Users/seb/Devel/arboris-python/src/pyfile
/Users/seb/Devel/arboris-python/src/pyfile

$ python2.6 -m doctest test.txt
**********************************************************************
File "test.txt", line 5, in test.txt
Failed example:
print mod.__file__
Expected:
/Users/seb/Devel/arboris-python/src/pyfile/mod.pyc
Got:
mod.pyc
**********************************************************************
File "test.txt", line 7, in test.txt
Failed example:
print(mod.whereami)
Expected:
/Users/seb/Devel/arboris-python/src/pyfile
Got:
<BLANKLINE>
**********************************************************************
File "test.txt", line 9, in test.txt
Failed example:
print(mod.whereami2)
Expected:
/Users/seb/Devel/arboris-python/src/pyfile
Got:
/Users/seb/Devel/arboris-python/src/pyfile/
**********************************************************************
1 items had failures:
3 of 6 in test.txt
***Test Failed*** 3 failures.

Cheers
Sebastian

test.txt
mod.py
test.py

Christian Heimes

unread,
Oct 1, 2010, 7:47:14 AM10/1/10
to pytho...@python.org
Am 01.10.2010 13:00, schrieb Sébastien Barthélemy:
> Hello,
>
> I use a data file that lies on disk in the same directory that the
> module which makes use of it.
>
> The data file is checked in the repository and gets installed by
> the distutils ``package_data`` directive, so it is in place both
> during development and after and install.
>
> In my program, I need to find the absolute path to this data file.
>
> I could think of 3 ways to do this:
> 1. using the __path__ property in the module
> 2. using __file__ property in the module
> 3. using __file__ and os.getcwd() in the module

Use the abspath function of the os.path module:

HERE = os.path.dirname(os.path.abspath(__file__))

Christian

Arnaud Delobelle

unread,
Oct 1, 2010, 12:43:21 PM10/1/10
to
Sébastien Barthélemy <barth...@crans.org> writes:

> Hello,

Hi!

> I use a data file that lies on disk in the same directory that the
> module which makes use of it.
>
> The data file is checked in the repository and gets installed by
> the distutils ``package_data`` directive, so it is in place both
> during development and after and install.
>
> In my program, I need to find the absolute path to this data file.
>
> I could think of 3 ways to do this:
> 1. using the __path__ property in the module
> 2. using __file__ property in the module
> 3. using __file__ and os.getcwd() in the module

I have used the following, but I don't know either if it is a good way:

os.path.dirname(os.path.realpath(__file__))

--
Arnaud

Sébastien Barthélemy

unread,
Oct 1, 2010, 3:00:02 PM10/1/10
to pytho...@python.org
Hi,

Arnaud, Christian, thank you for your help.

I'll use abspath, it's shorter.

Any idea why it's sometimes absolute, sometimes not?

Antoine Pitrou

unread,
Oct 1, 2010, 3:22:19 PM10/1/10
to pytho...@python.org

AFAICT, that's because sys.path contains some absolute paths and some
relative ones.

Regards

Antoine.


0 new messages