0x1949 Team - FAZEMRX - MANAGER
Edit File: file_util.cpython-310.pyc
o ��bc� � @ sb d Z ddlZddlmZ ddlmZ dddd�Zdd d�Z dd d�Z ddd�Z dd� Z dS )zFdistutils.file_util Utility functions for operating on single files. � N)�DistutilsFileError)�log�copyingzhard linkingzsymbolically linking)N�hard�sym� @ c C s� d}d}z�zt | d�}W n ty! } z td| |jf ��d}~ww tj�|�rEzt�|� W n tyD } z td||jf ��d}~ww zt |d�}W n tya } z td||jf ��d}~ww z|�|�}W n ty } z td| |jf ��d}~ww |s�nz|� |� W n ty� } z td ||jf ��d}~ww qcW |r�|� � |r�|� � dS dS |r�|� � |r�|� � w w ) a5 Copy the file 'src' to 'dst'; both must be filenames. Any error opening either file, reading from 'src', or writing to 'dst', raises DistutilsFileError. Data is read/written in chunks of 'buffer_size' bytes (default 16k). No attempt is made to handle anything apart from regular files. N�rbzcould not open '%s': %szcould not delete '%s': %s�wbzcould not create '%s': %sTzcould not read from '%s': %szcould not write to '%s': %s)�open�OSErrorr �strerror�os�path�exists�unlink�read�write�close)�src�dst�buffer_size�fsrc�fdst�e�buf� r �*/usr/lib/python3.10/distutils/file_util.py�_copy_file_contents sr ����������������� �r � c C s� ddl m} ddlm} m} m}m} tj� | �st d| ��tj�|�r2|} tj�|tj� | ��}ntj�|�} |rM|| |�sM|dkrIt�d| � |dfS zt| }W n ty` td| ��w |dkr�tj� |�tj� | �krzt�d|| | � nt�d|| |� |r�|dfS |d kr�tj�|�r�tj�| |�s�zt�| |� |dfW S ty� Y nw n|d kr�tj�|�r�tj�| |�s�t�| |� |dfS t| |� |s�|r�t�| �}|r�t�||| || f� |r�t�|||| �� |dfS )a Copy a file 'src' to 'dst'. If 'dst' is a directory, then 'src' is copied there with the same name; otherwise, it must be a filename. (If the file exists, it will be ruthlessly clobbered.) If 'preserve_mode' is true (the default), the file's mode (type and permission bits, or whatever is analogous on the current platform) is copied. If 'preserve_times' is true (the default), the last-modified and last-access times are copied as well. If 'update' is true, 'src' will only be copied if 'dst' does not exist, or if 'dst' does exist but is older than 'src'. 'link' allows you to make hard links (os.link) or symbolic links (os.symlink) instead of copying: set it to "hard" or "sym"; if it is None (the default), files are copied. Don't set 'link' on systems that don't support it: 'copy_file()' doesn't check if hard or symbolic linking is available. If hardlink fails, falls back to _copy_file_contents(). Under Mac OS, uses the native file copy function in macostools; on other systems, uses '_copy_file_contents()' to copy file contents. Return a tuple (dest_name, copied): 'dest_name' is the actual name of the output file, and 'copied' is true if the file was copied (or would have been copied, if 'dry_run' true). r )�newer)�ST_ATIME�ST_MTIME�ST_MODE�S_IMODEz4can't copy '%s': doesn't exist or not a regular filer z"not copying %s (output up-to-date)z&invalid value '%s' for 'link' argumentz%s %s -> %sr r )�distutils.dep_utilr �statr r! r"