$86 GRAYBYTE WORDPRESS FILE MANAGER $45

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

/opt/alt/python310/lib64/python3.10/distutils/__pycache__/

HOME
Current File : /opt/alt/python310/lib64/python3.10/distutils/__pycache__//file_util.cpython-310.pyc
o

0�i��@sbdZddlZddlmZddlmZdddd�Zdd
d�Z		dd
d�Z		ddd�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�}Wnty!}z	td||jf��d}~wwtj�|�rEzt�|�WntyD}z	td||jf��d}~wwzt|d�}Wntya}z	td||jf��d}~ww	z|�|�}Wnty}z	td||jf��d}~ww|s�nz|�	|�Wnty�}z	td	||jf��d}~wwqcW|r�|�
�|r�|�
�dSdS|r�|�
�|r�|�
�ww)
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': %sTzcould 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�:/opt/alt/python310/lib64/python3.10/distutils/file_util.py�_copy_file_contentssr	�����������������
�r�cCs�ddlm}ddlm}	m}
m}m}tj�	|�st
d|��tj�|�r2|}
tj�|tj�
|��}ntj�|�}
|rM|||�sM|dkrIt�d|�|dfSzt|}Wn
ty`td|��w|dkr�tj�
|�tj�
|�krzt�d|||
�nt�d|||�|r�|dfS|d	kr�tj�|�r�tj�||�s�zt�||�|dfWSty�Ynwn|d
kr�tj�|�r�tj�||�s�t�||�|dfSt||�|s�|r�t�|�}|r�t�|||	||
f�|r�t�||||��|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_fileCs\!��
��	

r5cCs�ddlm}m}m}m}m}ddl}	|dkrt�d||�|r!|S||�s+t	d|��||�r9t
j�|||��}n||�rEt	d||f��|||��sSt	d||f��d	}
zt
�
||�Wn(ty�}z|j\}}
||	jkrrd
}
n	t	d|||
f��WYd}~nd}~ww|
r�t|||d�zt
�|�W|Sty�}z |j\}}
zt
�|�Wn	ty�Ynwt	d
||||
f��d}~ww|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�sn����

�����
�
����
r:cCs<t|d�}z|D]	}|�|d�qW|��dS|��w)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
..
--
4 May 2026 11.11 PM
root / linksafe
0755
__init__.cpython-310.opt-1.pyc
0.622 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
__init__.cpython-310.opt-2.pyc
0.448 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
__init__.cpython-310.pyc
0.622 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
_msvccompiler.cpython-310.opt-1.pyc
12.501 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
_msvccompiler.cpython-310.opt-2.pyc
11.395 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
_msvccompiler.cpython-310.pyc
12.543 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
archive_util.cpython-310.opt-1.pyc
6.371 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
archive_util.cpython-310.opt-2.pyc
4.4 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
archive_util.cpython-310.pyc
6.371 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
bcppcompiler.cpython-310.opt-1.pyc
6.358 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
bcppcompiler.cpython-310.opt-2.pyc
6.085 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
bcppcompiler.cpython-310.pyc
6.358 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
ccompiler.cpython-310.opt-1.pyc
32.196 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
ccompiler.cpython-310.opt-2.pyc
16.385 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
ccompiler.cpython-310.pyc
32.285 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
cmd.cpython-310.opt-1.pyc
13.585 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
cmd.cpython-310.opt-2.pyc
7.932 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
cmd.cpython-310.pyc
13.585 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
config.cpython-310.opt-1.pyc
3.467 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
config.cpython-310.opt-2.pyc
3.116 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
config.cpython-310.pyc
3.467 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
core.cpython-310.opt-1.pyc
6.464 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
core.cpython-310.opt-2.pyc
3.168 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
core.cpython-310.pyc
6.464 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
cygwinccompiler.cpython-310.opt-1.pyc
8.273 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
cygwinccompiler.cpython-310.opt-2.pyc
6.725 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
cygwinccompiler.cpython-310.pyc
8.273 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
debug.cpython-310.opt-1.pyc
0.208 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
debug.cpython-310.opt-2.pyc
0.208 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
debug.cpython-310.pyc
0.208 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dep_util.cpython-310.opt-1.pyc
2.67 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dep_util.cpython-310.opt-2.pyc
1.276 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dep_util.cpython-310.pyc
2.67 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dir_util.cpython-310.opt-1.pyc
5.708 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dir_util.cpython-310.opt-2.pyc
3.413 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dir_util.cpython-310.pyc
5.708 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dist.cpython-310.opt-1.pyc
33.17 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dist.cpython-310.opt-2.pyc
24.199 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
dist.cpython-310.pyc
33.17 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
errors.cpython-310.opt-1.pyc
4.839 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
errors.cpython-310.opt-2.pyc
2.46 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
errors.cpython-310.pyc
4.839 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
extension.cpython-310.opt-1.pyc
6.826 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
extension.cpython-310.opt-2.pyc
3.43 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
extension.cpython-310.pyc
6.826 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
fancy_getopt.cpython-310.opt-1.pyc
10.227 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
fancy_getopt.cpython-310.opt-2.pyc
7.54 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
fancy_getopt.cpython-310.pyc
10.345 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
file_util.cpython-310.opt-1.pyc
5.8 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
file_util.cpython-310.opt-2.pyc
3.732 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
file_util.cpython-310.pyc
5.8 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
filelist.cpython-310.opt-1.pyc
9.54 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
filelist.cpython-310.opt-2.pyc
6.771 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
filelist.cpython-310.pyc
9.612 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
log.cpython-310.opt-1.pyc
2.217 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
log.cpython-310.opt-2.pyc
2.161 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
log.cpython-310.pyc
2.217 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
msvc9compiler.cpython-310.opt-1.pyc
17.072 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
msvc9compiler.cpython-310.opt-2.pyc
15.531 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
msvc9compiler.cpython-310.pyc
17.114 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
msvccompiler.cpython-310.opt-1.pyc
14.398 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
msvccompiler.cpython-310.opt-2.pyc
12.9 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
msvccompiler.cpython-310.pyc
14.398 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
spawn.cpython-310.opt-1.pyc
3.35 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
spawn.cpython-310.opt-2.pyc
2.255 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
spawn.cpython-310.pyc
3.35 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
sysconfig.cpython-310.opt-1.pyc
6.848 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
sysconfig.cpython-310.opt-2.pyc
5.065 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
sysconfig.cpython-310.pyc
6.848 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
text_file.cpython-310.opt-1.pyc
8.234 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
text_file.cpython-310.opt-2.pyc
3.292 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
text_file.cpython-310.pyc
8.234 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
unixccompiler.cpython-310.opt-1.pyc
6.946 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
unixccompiler.cpython-310.opt-2.pyc
6.34 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
unixccompiler.cpython-310.pyc
6.946 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
util.cpython-310.opt-1.pyc
15.281 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
util.cpython-310.opt-2.pyc
9.591 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
util.cpython-310.pyc
15.285 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
version.cpython-310.opt-1.pyc
7.134 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
version.cpython-310.opt-2.pyc
3.941 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
version.cpython-310.pyc
7.15 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
versionpredicate.cpython-310.opt-1.pyc
5.029 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
versionpredicate.cpython-310.opt-2.pyc
2.631 KB
17 Apr 2026 11.34 AM
root / linksafe
0644
versionpredicate.cpython-310.pyc
5.029 KB
17 Apr 2026 11.34 AM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF