vote up 3 vote down star

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.)

flag

66% accept rate
So far, the answers provided just show how to get script_1.py filename/path but not script_3.py. – Ray Vega Sep 8 '08 at 21:04
UPDATE: someone has provided an acceptable answer – Ray Vega Sep 9 '08 at 0:33

8 Answers

vote up 1 vote down check

p1.py:


execfile("p2.py")

p2.py:


import inspect
print inspect.getfile( inspect.currentframe() )
link|flag
vote up 6 vote down

It's not entirely clear what you mean by "the filepath of the file that is currently running within the process". sys.argv[0] usually contains the location of the script that was invoked by the Python interpreter. Check the sys documentation for more details.

As @Tim and @Pat Notz have pointed out, the __file__ attribute provides access to

the file from which the module was loaded, if it was loaded from a file

link|flag
vote up 0 vote down

sys.executable gives the name of the Python interpreter.

link|flag
vote up 1 vote down

I think it's just __file__ Sounds like you may also want to checkout the inspect module.

Ugh. Stupid markdown... try "underscore underscore file underscore underscore"

link|flag
Ahhh... execfile is tricky. See my other post about using the inspect module. – Pat Notz Sep 8 '08 at 23:03
vote up 2 vote down

The "file" attribute works for both the file containing the main execution code as well as imported modules http://pyref.infogami.com/__file__

link|flag
vote up 11 vote down

__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.

import os

def h():
    print os.path.abspath( __file__ )
link|flag
vote up 0 vote down

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:

# this is code in file 'script_2.py'
fname = 'script_3.py'
fpath = 'c:\\temp'
execfile(fpath + os.sep + fname, {'fname': fname, 'fpath': fpath})

(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)

link|flag
vote up 0 vote down

You can use inspect.stack()

import inspect
inspect.stack()[0]  => (<frame object at 0x00AC2AC0>, 'g:\\Python\\Test\\_GetCurrentProgram.py', 15, '<module>', ['print inspect.stack()[0]\n'], 0)
os.path.abspath (inspect.stack()[0][1]) => 'g:\\Python\\Test\\_GetCurrentProgram.py'
link|flag

Your Answer

Get an OpenID
or

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