I would like my application to store some data for access by all users. Using Python, how can I find where the data should go?
|
1
|
|||||||
|
|
|
If you don't want to add a dependency for a third-party module like winpaths, I would recommend using the environment variables already available in Windows: Specifically you probably want e.g.:
EDIT: Looking at the winpaths module, it's using ctypes so if you wanted to just use the relevant part of the code without installing winpath, you can use this (obviously some error checking omitted for brevity).
Example run:
|
|||
|
|
Take a look at http://ginstrom.com/code/winpaths.html. This is a simple module that will retrieve Windows folder information. The module implements |
|||
|
|
|
Previous answer removed due to incompatibility with non-US versions of Windows, and Vista. EDIT: To expand on Out Into Space's answer, you would use the
|
||||||||||
|
|
|
You can access all of your OS environment variables using the
My XP machine here has a COMMONAPPDATA environment variable which points to the All Users\Application Data folder, but my Win2K3 system does not have this environment variable. |
||
|
|
|
|
FROM http://snipplr.com/view.php?codeview&id=7354
|
|||
|
|
