I have scripts calling other script files but I need to get the filepath of the file that is currently running within the process. For example, let's say I have three files. Using 'execfile', script_1.py calls script_2.py. In turn, script_2.py calls script_3.py. How can I get the file name and path of script_3.py *from code within script_3.py* without having to pass that info as args from script_2.py? (Executing os.getcwd() returns the original starting script's filepath not the current file's.)
|
|
|||||
|
|
|
p1.py:
p2.py:
|
||
|
|
|
|
It's not entirely clear what you mean by "the filepath of the file that is currently running within the process".
As @Tim and @Pat Notz have pointed out, the __file__ attribute provides access to
|
|||
|
|
|
|
|
||
|
|
|
|
I think it's just Ugh. Stupid markdown... try "underscore underscore file underscore underscore" |
|||
|
|
|
The "file" attribute works for both the file containing the main execution code as well as imported modules http://pyref.infogami.com/__file__ |
||
|
|
|
|
__file__ is the answer, however, it is relative to the path, so you'll need to use os.path.abspath(__file__) to get the actual path to the file e.g.
|
|||
|
|
|
|
Pass values for the file path and name of script_3.py as args in 'execfile' command from script_2.py to script_3.py:
(My current workaround that "works" but want to "inverse the control" so that script_3.py can provide that info instead of the calling file(s) doing it) |
|||
|
|
|
|
You can use inspect.stack()
|
||
|
|
