관리-도구
편집 파일: windows.cpython-312.pyc
� t��e� � � � d dl mZ d dlZd dlZd dlZd dlmZ d dlmZ ddl m Z G d� de � Zdd �Zdd �Z dd�Zdd�Z ed� � e� � ZdgZy)� )�annotationsN)� lru_cache)�Callable� )�PlatformDirsABCc � � e Zd ZdZedd�� Zdd�dd�Zedd�� Zedd�� Zedd�� Z edd �� Z edd �� Zedd�� Zedd�� Z edd �� Zy)�Windowsa� `MSDN on where to store app data files <http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120>`_. Makes use of the `appname <platformdirs.api.PlatformDirsABC.appname>`, `appauthor <platformdirs.api.PlatformDirsABC.appauthor>`, `version <platformdirs.api.PlatformDirsABC.version>`, `roaming <platformdirs.api.PlatformDirsABC.roaming>`, `opinion <platformdirs.api.PlatformDirsABC.opinion>`.c � � | j rdnd}t j j t |� � }| j |� S )z� :return: data directory tied to the user, e.g. ``%USERPROFILE%\AppData\Local\$appauthor\$appname`` (not roaming) or ``%USERPROFILE%\AppData\Roaming\$appauthor\$appname`` (roaming) � CSIDL_APPDATA�CSIDL_LOCAL_APPDATA)�roaming�os�path�normpath�get_win_folder� _append_parts)�self�constr s ��/builddir/build/BUILDROOT/alt-python312-setuptools-69.0.2-1.el8.x86_64/opt/alt/python312/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/windows.py� user_data_dirzWindows.user_data_dir s<