I'm building a simple helper script for work that will copy a couple of template files in our code base to the current directory. I don't, however, have the absolute path to the directory where the templates are stored. I do have a relative path from the script but when I call the script it treats that as a path relative to the current working directory. Is there a way to specify that this relative url is from the location of the script instead?
|
|
|
|
|
|
|
In the file that has the script, you want to do something like this:
This will give you the absolute path to the file you're looking for. Note that if you're using setuptools, you should probably use its package resources API instead. UPDATE: I'm responding to a comment here so I can paste a code sample. :-)
I'm assuming you mean the
However, I do know that there are some quirks with
However, this raises an exception on my Windows machine. |
||||||
|
|
|
See sys.path As initialized upon program startup, the first item of this list, path[0], is the directory containing the script that was used to invoke the Python interpreter. Use this path as the root folder from which you apply your relative path
|
||||||
|
