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:
|
|||||||||
|
|
e.g.
|
|||||||||||||||||
|
|
The suggestions marked as best are all true if your script consists of only one file. If you want to find out the name of the executable (i.e. the root file passed to the python interpreter for the current program) from a file that may be imported as a module, you need to do this (let's assume this is in a file named foo.py):
Because the last thing ( Then in file bar.py if you
|
|||||||||||||
|
|
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 this is cleaner:
and gets the same information as:
Where [0] is the current frame in the stack (top of stack) and [1] is for the file name, increase to go backwards in the stack i.e.
would be the file name of the script that called the current frame. Also, using [-1] will get you to the bottom of the stack, the original calling script. |
||||
|
|
|
|||||
|
|
The "file" attribute works for both the file containing the main execution code as well as imported modules http://pyref.infogami.com/__file__ |
|||
|
|
this would print the path of the currently executing script |
|||||
|
|
I think it's just Ugh. Stupid markdown... try "underscore underscore file underscore underscore" |
||||
|
|
You can use inspect.stack()
|
|||
|
|
|
I used the approach with __file__ |
|||
|
|
|
I have a script that must work under windows environment. THis code snipped is what I've finished with:
it's quite a hacky decision. But it requires no external libraries and it's the most important thing in my case. |
|||
|
|
|
if you want just the filename without
|
||||
|
|
|
||||
|
|
|
|
|||||
|