Get the real OS path of a Zope product
by
tibi
—
last modified
2007-04-09 14:31
To get the path of a zope product, you can use the following snippet:
from Globals import package_home
product_path = package_home(product_globals)
Replace product_globals with the globals variable that you define and import from your project.