Possible Duplicate:
Retrieving python module path
How do i get the path of a the python script i am running in? i was doing dirname(sys.argv[0]) however on mac i got only the filename and not the full path as i do on windows.
No matter where my application is launched from, i want to open files that are relative to my script file(s) which is why i need the directory path.
moduleobject can be created for any script file. Just because something never actually getsimported doesn't make it "not a module". The answer is the same, anyway: treat the script as a module (use some kind of bootstrap if really necessary) and then apply the same technique. – Karl Knechtel Dec 26 '11 at 7:10open('images/pets/dog.png')and Python will do the other. – jmendeth Jul 13 '12 at 8:15