Server IP : 192.158.238.246 / Your IP : 3.144.178.82 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/root/opt/alt/python34/lib64/python3.4/distutils/__pycache__/ |
Upload File : |
� i fb � @ s� d Z d d l Z d d l Z d d l m Z m Z d d l m Z i a d d d d d � Z d d d d d � Z d d d d d d d d � Z d d � Z d d d d � Z d d � Z d S)zWdistutils.dir_util Utility functions for manipulating directories and directory trees.� N)�DistutilsFileError�DistutilsInternalError)�logi� � c C s� t | t � s% t d | f � � n t j j | � } g } t j j | � s[ | d k r_ | St j t j j | � � r~ | St j j | � \ } } | g } xK | r� | r� t j j | � r� t j j | � \ } } | j d | � q� Wx | D]} t j j | | � } t j j | � } t j | � r6q� n | d k rUt j d | � n | s�y t j | | � Wni t k r�} zI | j t j k o�t j j | � s�t d | | j d f � � n WYd d } ~ Xn X| j | � n d t | <q� W| S) a� Create a directory and any missing ancestor directories. If the directory already exists (or if 'name' is the empty string, which means the current directory, which of course exists), then do nothing. Raise DistutilsFileError if unable to create some directory along the way (eg. some sub-path exists, but is a file rather than a directory). If 'verbose' is true, print a one-line summary of each mkdir to stdout. Return the list of directories actually created. z(mkpath: 'name' must be a string (got %r)� r r zcreating %szcould not create '%s': %sN���)� isinstance�strr �os�path�normpath�isdir� _path_created�get�abspath�split�insert�joinr �info�mkdir�OSError�errnoZEEXISTr �args�append)�name�mode�verbose�dry_runZcreated_dirs�head�tailZtails�dZabs_head�exc� r"