Lets say you have a module which contains
myfile = open('test.txt', 'r')
And the 'test.txt' file is in the same folder. If you'll run the module, the file will be opened successfully.
Now lets say you import that module from another one which is in another folder. The file won't be searched in the same folder as the module where that code is.
So how to make the module search files with relative paths in the same folder first?
There are various solutions by using "__file__
" or "os.getcwd()
", but I'm hoping there's a cleaner way, like same special character in the string you pass to open() or file().
The solution is to use
__file__
and it's pretty clean:For normal modules loaded from
.py
files, the__file__
should be present and usable. To join the information from__file__
onto your relative path, there's a newer option thanos.path
interfaces available since 2014:pathlib
was added to Python in 3.4 - see PEP428. For users still on Python 2.7 wanting to use the same APIs, a backport is available.Users interested to apply the most modern approaches available should consider moving to importlib-resources rather than joining data files relative to the source tree. Currently, few users have the luxury of restricting compatibility to Python 3.7+ only, so I mention this as a heads-up to those who like to be at the cutting edge.