Development Team/Almanac/sugar.env

From Sugar Labs
< Development Team‎ | Almanac
Revision as of 12:42, 6 February 2009 by Dfarning-bot (talk | contribs) (Sugar.env moved to DevelopmentTeam/Almanac/sugar.env: Robot: moved page)
Jump to navigation Jump to search
  Sugar Almanac

Template:Sugar Almanac TOC

Environment Helper Functions

How do I get the profile path, where datastore, logging and other files are all located?

You can use the env.get_profile_path() method, which returns the base directory from which you can find other directories related to the datastore, logging, and activity-specific files.

from sugar import env
...
        print env.get_profile_path()


= How do I get the log path?

Use env.get_logs_path to get the specific path for logging.

from sugar import env
...
        print env.get_logs_path()