$25 GRAYBYTE WORDPRESS FILE MANAGER $90

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.157
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python39/lib64/python3.9/distutils/__pycache__/

HOME
Current File : /opt/alt/python39/lib64/python3.9/distutils/__pycache__//file_util.cpython-39.pyc
a

XC?h��@sZdZddlZddlmZddlmZdddd�Zdd
d�Zdd
d�Zddd�Z	dd�Z
dS)zFdistutils.file_util

Utility functions for operating on single files.
�N)�DistutilsFileError)�logZcopyingzhard linkingzsymbolically linking)N�hard�sym�@c
Cs�d}d}�z�zt|d�}Wn6tyP}ztd||jf��WYd}~n
d}~00tj�|�r�zt�|�Wn6ty�}ztd||jf��WYd}~n
d}~00zt|d�}Wn6ty�}ztd||jf��WYd}~n
d}~00z|�|�}Wn8t�y0}ztd||jf��WYd}~n
d}~00|�s<�q�z|�	|�Wq�t�y�}ztd||jf��WYd}~q�d}~00q�W|�r�|�
�|�r�|�
�n|�r�|�
�|�r�|�
�0dS)	a5Copy 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': %szcould not read from '%s': %szcould not write to '%s': %s)�open�OSErrorr�strerror�os�path�exists�unlink�read�write�close)�src�dstZbuffer_sizeZfsrcZfdst�eZbuf�r�8/opt/alt/python39/lib64/python3.9/distutils/file_util.py�_copy_file_contentssT	(����
�r�cCs
ddlm}ddlm}	m}
m}m}tj�	|�s<t
d|��tj�|�rd|}
tj�|tj�
|��}ntj�|�}
|r�|||�s�|dkr�t�d|�|dfSzt|}Wnty�td|��Yn0|dk�r
tj�
|�tj�
|�kr�t�d|||
�nt�d|||�|�r|dfS|d	k�rntj�|��r@tj�||��s�zt�||�|dfWSt�yjYn0n<|d
k�r�tj�|��r�tj�||��s�t�||�|dfSt||�|�s�|�rt�|�}|�r�t�|||	||
f�|�rt�||||��|dfS)aCopy 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 filerz"not copying %s (output up-to-date)z&invalid value '%s' for 'link' argumentz%s %s -> %srr)Zdistutils.dep_utilr�statrrrrrr
�isfiler�isdir�join�basename�dirnamer�debug�_copy_action�KeyError�
ValueError�infor�samefile�linkr
�symlinkr�utime�chmod)rrZ
preserve_modeZpreserve_times�updater+�verbose�dry_runrrrrr�dir�action�strrr�	copy_fileCsV!�





r5cCs�ddlm}m}m}m}m}ddl}	|dkr:t�d||�|rB|S||�sVt	d|��||�rrt
j�|||��}n||�r�t	d||f��|||��s�t	d||f��d	}
zt
�
||�WnRt�y}z8|j\}}
||	jkr�d
}
nt	d|||
f��WYd}~n
d}~00|
�r�t|||d�zt
�|�Wnht�y�}zN|j\}}
zt
�|�Wnt�ynYn0t	d
||||
f��WYd}~n
d}~00|S)a%Move a file 'src' to 'dst'.  If 'dst' is a directory, the file will
    be moved into it with the same name; otherwise, 'src' is just renamed
    to 'dst'.  Return the new full name of the file.

    Handles cross-device moves on Unix using 'copy_file()'.  What about
    other systems???
    r)rr r!r#r$Nrzmoving %s -> %sz#can't move '%s': not a regular filez0can't move '%s': destination '%s' already existsz2can't move '%s': destination '%s' not a valid pathFTzcouldn't move '%s' to '%s': %s)r0zAcouldn't move '%s' to '%s' by copy/delete: delete '%s' failed: %s)Zos.pathrr r!r#r$�errnorr)rrr
r"�renamer
�argsZEXDEVr5r)rrr0r1rr r!r#r$r6Zcopy_itrZnum�msgrrr�	move_file�s`����

�

��r:cCs>t|d�}z$|D]}|�|d�qW|��n
|��0dS)z{Create a file with the specified name and write 'contents' (a
    sequence of strings without line terminators) to it.
    �w�
N)r	rr)�filename�contents�f�linerrr�
write_file�s

rA)r)rrrNrr)rr)�__doc__rZdistutils.errorsrZ	distutilsrr&rr5r:rArrrr�<module>s�
3�
d�
?


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
22 Jul 2025 8.33 AM
root / linksafe
0755
__init__.cpython-39.opt-1.pyc
0.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__init__.cpython-39.opt-2.pyc
0.212 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__init__.cpython-39.pyc
0.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_msvccompiler.cpython-39.opt-1.pyc
12.497 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_msvccompiler.cpython-39.opt-2.pyc
11.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_msvccompiler.cpython-39.pyc
12.539 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
archive_util.cpython-39.opt-1.pyc
6.445 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
archive_util.cpython-39.opt-2.pyc
4.451 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
archive_util.cpython-39.pyc
6.445 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bcppcompiler.cpython-39.opt-1.pyc
6.358 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bcppcompiler.cpython-39.opt-2.pyc
6.077 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bcppcompiler.cpython-39.pyc
6.358 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ccompiler.cpython-39.opt-1.pyc
32.334 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ccompiler.cpython-39.opt-2.pyc
16.409 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ccompiler.cpython-39.pyc
32.423 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cmd.cpython-39.opt-1.pyc
13.612 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cmd.cpython-39.opt-2.pyc
7.884 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cmd.cpython-39.pyc
13.612 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
config.cpython-39.opt-1.pyc
3.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
config.cpython-39.opt-2.pyc
3.077 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
config.cpython-39.pyc
3.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
core.cpython-39.opt-1.pyc
6.511 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
core.cpython-39.opt-2.pyc
3.203 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
core.cpython-39.pyc
6.511 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cygwinccompiler.cpython-39.opt-1.pyc
8.316 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cygwinccompiler.cpython-39.opt-2.pyc
6.725 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cygwinccompiler.cpython-39.pyc
8.316 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
debug.cpython-39.opt-1.pyc
0.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
debug.cpython-39.opt-2.pyc
0.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
debug.cpython-39.pyc
0.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dep_util.cpython-39.opt-1.pyc
2.665 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dep_util.cpython-39.opt-2.pyc
1.255 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dep_util.cpython-39.pyc
2.665 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dir_util.cpython-39.opt-1.pyc
5.693 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dir_util.cpython-39.opt-2.pyc
3.371 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dir_util.cpython-39.pyc
5.693 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dist.cpython-39.opt-1.pyc
33.556 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dist.cpython-39.opt-2.pyc
24.482 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dist.cpython-39.pyc
33.556 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
errors.cpython-39.opt-1.pyc
5.142 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
errors.cpython-39.opt-2.pyc
2.653 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
errors.cpython-39.pyc
5.142 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
extension.cpython-39.opt-1.pyc
6.768 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
extension.cpython-39.opt-2.pyc
3.359 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
extension.cpython-39.pyc
6.768 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fancy_getopt.cpython-39.opt-1.pyc
10.269 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fancy_getopt.cpython-39.opt-2.pyc
7.531 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fancy_getopt.cpython-39.pyc
10.389 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
file_util.cpython-39.opt-1.pyc
5.855 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
file_util.cpython-39.opt-2.pyc
3.769 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
file_util.cpython-39.pyc
5.855 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
filelist.cpython-39.opt-1.pyc
9.545 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
filelist.cpython-39.opt-2.pyc
6.741 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
filelist.cpython-39.pyc
9.617 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
log.cpython-39.opt-1.pyc
2.273 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
log.cpython-39.opt-2.pyc
2.214 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
log.cpython-39.pyc
2.273 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvc9compiler.cpython-39.opt-1.pyc
17.072 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvc9compiler.cpython-39.opt-2.pyc
15.489 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvc9compiler.cpython-39.pyc
17.114 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvccompiler.cpython-39.opt-1.pyc
14.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvccompiler.cpython-39.opt-2.pyc
12.839 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvccompiler.cpython-39.pyc
14.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
spawn.cpython-39.opt-1.pyc
3.373 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
spawn.cpython-39.opt-2.pyc
2.267 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
spawn.cpython-39.pyc
3.373 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sysconfig.cpython-39.opt-1.pyc
11.791 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sysconfig.cpython-39.opt-2.pyc
8.386 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sysconfig.cpython-39.pyc
11.791 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
text_file.cpython-39.opt-1.pyc
8.256 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
text_file.cpython-39.opt-2.pyc
3.277 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
text_file.cpython-39.pyc
8.256 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
unixccompiler.cpython-39.opt-1.pyc
6.978 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
unixccompiler.cpython-39.opt-2.pyc
6.363 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
unixccompiler.cpython-39.pyc
6.978 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
util.cpython-39.opt-1.pyc
15.237 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
util.cpython-39.opt-2.pyc
9.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
util.cpython-39.pyc
15.237 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
version.cpython-39.opt-1.pyc
7.153 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
version.cpython-39.opt-2.pyc
3.945 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
version.cpython-39.pyc
7.182 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
versionpredicate.cpython-39.opt-1.pyc
5.018 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
versionpredicate.cpython-39.opt-2.pyc
2.596 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
versionpredicate.cpython-39.pyc
5.018 KB
19 Jun 2025 12.11 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF