3
I�5]g` � @ s� d Z d4Zdjeee��ZddlZddlZejd dkZ e r>eZ
ejjd�r�ddlZej
� d d Zejd�rrd Zq�ejd
�r�dZq�dZnejZd5dd�Zd6dd�Zd7dd�Zd8dd�Zd9dd�Zd:dd�Zd;dd�ZG dd� de�Zdd � Zd!d"� Zd#d$� Zd%d&� Zed k�r�yddlZeZW nn e k
�r� ydd'l!m"Z" eZW nB e k
�r� yddl#Z$eZW n e k
�r� eZY nX Y nX Y nX e%d(k�r�d)Z&d*Z'd<Z(e)d+e � e)d,� ee&e'd-d.�Z*x$e(D ]Z+e)d/e+e,e*e+�f � �q�W e)d0� ee&e'�Z*x$e(D ]Z+e)d/e+e,e*e+�f � �qW e)d1� ee&�Z*x$e(D ]Z+e)d/e+e,e*e+�f � �q:W e)d2� ee&d
d3�Z*x$e(D ]Z+e)d/e+e,e*e+�f � �qtW dS )=zyUtilities for determining application-specific dirs.
See <http://github.com/ActiveState/appdirs> for details and usage.
� � � �.� N�javaZWindows�win32ZMac�darwinZlinux2Fc C s� t dkr^|dkr| }|rdpd}tjjt|��}| r�|dk rNtjj||| �}q�tjj|| �}nNt dkr�tjjd�}| r�tjj|| �}n&tjdtjjd ��}| r�tjj|| �}| r�|r�tjj||�}|S )
aJ Return full path to the user-specific data dir for this application.
"appname" is the name of application.
If None, just the system directory is returned.
"appauthor" (only used on Windows) is the name of the
appauthor or distributing body for this application. Typically
it is the owning company name. This falls back to appname. You may
pass False to disable it.
"version" is an optional version path element to append to the
path. You might want to use this if you want multiple versions
of your app to be able to run independently. If used, this
would typically be "<major>.<minor>".
Only applied when appname is present.
"roaming" (boolean, default False) can be set True to use the Windows
roaming appdata directory. That means that for users on a Windows
network setup for roaming profiles, this user data will be
sync'd on login. See
<http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
for a discussion of issues.
Typical user data directories are:
Mac OS X: ~/Library/Application Support/<AppName>
Unix: ~/.local/share/<AppName> # or in $XDG_DATA_HOME, if defined
Win XP (not roaming): C:\Documents and Settings\<username>\Application Data\<AppAuthor>\<AppName>
Win XP (roaming): C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>
Win 7 (not roaming): C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>
Win 7 (roaming): C:\Users\<username>\AppData\Roaming\<AppAuthor>\<AppName>
For Unix, we follow the XDG spec and support $XDG_DATA_HOME.
That means, by default "~/.local/share/<AppName>".
r N�
CSIDL_APPDATA�CSIDL_LOCAL_APPDATAFr z~/Library/Application Support/Z
XDG_DATA_HOMEz~/.local/share)�system�os�path�normpath�_get_win_folder�join�
expanduser�getenv)�appname� appauthor�version�roaming�constr
� r �/usr/lib/python3.6/appdirs.py�
user_data_dir, s&