$29 GRAYBYTE WORDPRESS FILE MANAGER $12

SERVER : in-mum-web1330.main-hosting.eu #1 SMP Mon Feb 10 22:45:17 UTC 2025
SERVER IP : 93.127.173.133 | ADMIN IP 216.73.216.63
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/lib64/python3.8/distutils/__pycache__/

HOME
Current File : /lib64/python3.8/distutils/__pycache__//file_util.cpython-38.opt-1.pyc
U

e5d��@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}�ztzt|d�}Wn4tk
rN}ztd||jf��W5d}~XYnXtj�|�r�zt�|�Wn4tk
r�}ztd||jf��W5d}~XYnXzt|d�}Wn4tk
r�}ztd||jf��W5d}~XYnXz|�	|�}Wn6tk
�r(}ztd||jf��W5d}~XYnX|�s4�q|z|�
|�Wq�tk
�rx}ztd||jf��W5d}~XYq�Xq�W5|�r�|��|�r�|��XdS)	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)�close�open�OSErrorr�strerror�os�path�exists�unlink�read�write)�src�dstZbuffer_sizeZfsrcZfdst�eZbuf�r�+/usr/lib64/python3.8/distutils/file_util.py�_copy_file_contentssL	$����r�cCsddlm}ddlm}	m}
m}m}tj�	|�s<t
d|��tj�|�rd|}
tj�|tj�
|��}ntj�|�}
|r�|||�s�|dkr�t�d|�|dfSzt|}Wn tk
r�td|��YnX|dk�rtj�
|�tj�
|�kr�t�d|||
�nt�d|||�|�r|dfS|d	k�rrtj�|��rBtj�||��s�zt�||�|dfWStk
�rnYnXn<|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
�
||�WnPtk
�r
}z0|j\}}
||	jkr�d
}
nt	d|||
f��W5d}~XYnX|
�r�t|||d�zt
�|�Wnhtk
�r�}zH|j\}}
zt
�|�Wntk
�rpYnXt	d
||||
f��W5d}~XYnX|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
rr"�renamer�argsZEXDEVr5r)rrr0r1rr r!r#r$r6Zcopy_itrZnum�msgrrr�	move_file�s`����

�

��r:cCs6t|d�}z|D]}|�|d�qW5|��XdS)z{Create a file with the specified name and write 'contents' (a
    sequence of strings without line terminators) to it.
    �w�
N)r
r	r)�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 [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
21 Oct 2025 6.55 AM
root / root
0755
__init__.cpython-38.opt-1.pyc
0.377 KB
17 Oct 2023 6.13 PM
root / root
0644
__init__.cpython-38.opt-2.pyc
0.199 KB
17 Oct 2023 6.13 PM
root / root
0644
__init__.cpython-38.pyc
0.377 KB
17 Oct 2023 6.13 PM
root / root
0644
_msvccompiler.cpython-38.opt-1.pyc
12.606 KB
17 Oct 2023 6.13 PM
root / root
0644
_msvccompiler.cpython-38.opt-2.pyc
11.483 KB
17 Oct 2023 6.13 PM
root / root
0644
_msvccompiler.cpython-38.pyc
12.664 KB
17 Oct 2023 6.13 PM
root / root
0644
archive_util.cpython-38.opt-1.pyc
6.388 KB
17 Oct 2023 6.13 PM
root / root
0644
archive_util.cpython-38.opt-2.pyc
4.394 KB
17 Oct 2023 6.13 PM
root / root
0644
archive_util.cpython-38.pyc
6.388 KB
17 Oct 2023 6.13 PM
root / root
0644
bcppcompiler.cpython-38.opt-1.pyc
6.372 KB
17 Oct 2023 6.13 PM
root / root
0644
bcppcompiler.cpython-38.opt-2.pyc
6.091 KB
17 Oct 2023 6.13 PM
root / root
0644
bcppcompiler.cpython-38.pyc
6.372 KB
17 Oct 2023 6.13 PM
root / root
0644
ccompiler.cpython-38.opt-1.pyc
32.395 KB
17 Oct 2023 6.13 PM
root / root
0644
ccompiler.cpython-38.opt-2.pyc
16.471 KB
17 Oct 2023 6.13 PM
root / root
0644
ccompiler.cpython-38.pyc
32.519 KB
17 Oct 2023 6.13 PM
root / root
0644
cmd.cpython-38.opt-1.pyc
13.623 KB
17 Oct 2023 6.13 PM
root / root
0644
cmd.cpython-38.opt-2.pyc
7.895 KB
17 Oct 2023 6.13 PM
root / root
0644
cmd.cpython-38.pyc
13.623 KB
17 Oct 2023 6.13 PM
root / root
0644
config.cpython-38.opt-1.pyc
3.429 KB
17 Oct 2023 6.13 PM
root / root
0644
config.cpython-38.opt-2.pyc
3.047 KB
17 Oct 2023 6.13 PM
root / root
0644
config.cpython-38.pyc
3.429 KB
17 Oct 2023 6.13 PM
root / root
0644
core.cpython-38.opt-1.pyc
6.461 KB
17 Oct 2023 6.13 PM
root / root
0644
core.cpython-38.opt-2.pyc
3.153 KB
17 Oct 2023 6.13 PM
root / root
0644
core.cpython-38.pyc
6.461 KB
17 Oct 2023 6.13 PM
root / root
0644
cygwinccompiler.cpython-38.opt-1.pyc
8.412 KB
17 Oct 2023 6.13 PM
root / root
0644
cygwinccompiler.cpython-38.opt-2.pyc
6.82 KB
17 Oct 2023 6.13 PM
root / root
0644
cygwinccompiler.cpython-38.pyc
8.412 KB
17 Oct 2023 6.13 PM
root / root
0644
debug.cpython-38.opt-1.pyc
0.191 KB
17 Oct 2023 6.13 PM
root / root
0644
debug.cpython-38.opt-2.pyc
0.191 KB
17 Oct 2023 6.13 PM
root / root
0644
debug.cpython-38.pyc
0.191 KB
17 Oct 2023 6.13 PM
root / root
0644
dep_util.cpython-38.opt-1.pyc
2.652 KB
17 Oct 2023 6.13 PM
root / root
0644
dep_util.cpython-38.opt-2.pyc
1.242 KB
17 Oct 2023 6.13 PM
root / root
0644
dep_util.cpython-38.pyc
2.652 KB
17 Oct 2023 6.13 PM
root / root
0644
dir_util.cpython-38.opt-1.pyc
5.688 KB
17 Oct 2023 6.13 PM
root / root
0644
dir_util.cpython-38.opt-2.pyc
3.366 KB
17 Oct 2023 6.13 PM
root / root
0644
dir_util.cpython-38.pyc
5.688 KB
17 Oct 2023 6.13 PM
root / root
0644
dist.cpython-38.opt-1.pyc
33.686 KB
17 Oct 2023 6.13 PM
root / root
0644
dist.cpython-38.opt-2.pyc
24.612 KB
17 Oct 2023 6.13 PM
root / root
0644
dist.cpython-38.pyc
33.686 KB
17 Oct 2023 6.13 PM
root / root
0644
errors.cpython-38.opt-1.pyc
5.129 KB
17 Oct 2023 6.13 PM
root / root
0644
errors.cpython-38.opt-2.pyc
2.641 KB
17 Oct 2023 6.13 PM
root / root
0644
errors.cpython-38.pyc
5.129 KB
17 Oct 2023 6.13 PM
root / root
0644
extension.cpython-38.opt-1.pyc
6.763 KB
17 Oct 2023 6.13 PM
root / root
0644
extension.cpython-38.opt-2.pyc
3.354 KB
17 Oct 2023 6.13 PM
root / root
0644
extension.cpython-38.pyc
6.763 KB
17 Oct 2023 6.13 PM
root / root
0644
fancy_getopt.cpython-38.opt-1.pyc
10.268 KB
17 Oct 2023 6.13 PM
root / root
0644
fancy_getopt.cpython-38.opt-2.pyc
7.53 KB
17 Oct 2023 6.13 PM
root / root
0644
fancy_getopt.cpython-38.pyc
10.408 KB
17 Oct 2023 6.13 PM
root / root
0644
file_util.cpython-38.opt-1.pyc
5.796 KB
17 Oct 2023 6.13 PM
root / root
0644
file_util.cpython-38.opt-2.pyc
3.709 KB
17 Oct 2023 6.13 PM
root / root
0644
file_util.cpython-38.pyc
5.796 KB
17 Oct 2023 6.13 PM
root / root
0644
filelist.cpython-38.opt-1.pyc
9.55 KB
17 Oct 2023 6.13 PM
root / root
0644
filelist.cpython-38.opt-2.pyc
6.746 KB
17 Oct 2023 6.13 PM
root / root
0644
filelist.cpython-38.pyc
9.638 KB
17 Oct 2023 6.13 PM
root / root
0644
log.cpython-38.opt-1.pyc
2.263 KB
17 Oct 2023 6.13 PM
root / root
0644
log.cpython-38.opt-2.pyc
2.203 KB
17 Oct 2023 6.13 PM
root / root
0644
log.cpython-38.pyc
2.263 KB
17 Oct 2023 6.13 PM
root / root
0644
msvc9compiler.cpython-38.opt-1.pyc
17.044 KB
17 Oct 2023 6.13 PM
root / root
0644
msvc9compiler.cpython-38.opt-2.pyc
15.461 KB
17 Oct 2023 6.13 PM
root / root
0644
msvc9compiler.cpython-38.pyc
17.102 KB
17 Oct 2023 6.13 PM
root / root
0644
msvccompiler.cpython-38.opt-1.pyc
14.38 KB
17 Oct 2023 6.13 PM
root / root
0644
msvccompiler.cpython-38.opt-2.pyc
12.842 KB
17 Oct 2023 6.13 PM
root / root
0644
msvccompiler.cpython-38.pyc
14.38 KB
17 Oct 2023 6.13 PM
root / root
0644
spawn.cpython-38.opt-1.pyc
4.988 KB
17 Oct 2023 6.13 PM
root / root
0644
spawn.cpython-38.opt-2.pyc
3.715 KB
17 Oct 2023 6.13 PM
root / root
0644
spawn.cpython-38.pyc
4.988 KB
17 Oct 2023 6.13 PM
root / root
0644
sysconfig.cpython-38.opt-1.pyc
11.857 KB
17 Oct 2023 6.13 PM
root / root
0644
sysconfig.cpython-38.opt-2.pyc
8.454 KB
17 Oct 2023 6.13 PM
root / root
0644
sysconfig.cpython-38.pyc
11.857 KB
17 Oct 2023 6.13 PM
root / root
0644
text_file.cpython-38.opt-1.pyc
8.243 KB
17 Oct 2023 6.13 PM
root / root
0644
text_file.cpython-38.opt-2.pyc
3.265 KB
17 Oct 2023 6.13 PM
root / root
0644
text_file.cpython-38.pyc
8.243 KB
17 Oct 2023 6.13 PM
root / root
0644
unixccompiler.cpython-38.opt-1.pyc
6.822 KB
17 Oct 2023 6.13 PM
root / root
0644
unixccompiler.cpython-38.opt-2.pyc
6.208 KB
17 Oct 2023 6.13 PM
root / root
0644
unixccompiler.cpython-38.pyc
6.822 KB
17 Oct 2023 6.13 PM
root / root
0644
util.cpython-38.opt-1.pyc
15.184 KB
17 Oct 2023 6.13 PM
root / root
0644
util.cpython-38.opt-2.pyc
9.438 KB
17 Oct 2023 6.13 PM
root / root
0644
util.cpython-38.pyc
15.184 KB
17 Oct 2023 6.13 PM
root / root
0644
version.cpython-38.opt-1.pyc
7.098 KB
17 Oct 2023 6.13 PM
root / root
0644
version.cpython-38.opt-2.pyc
3.89 KB
17 Oct 2023 6.13 PM
root / root
0644
version.cpython-38.pyc
7.142 KB
17 Oct 2023 6.13 PM
root / root
0644
versionpredicate.cpython-38.opt-1.pyc
5.017 KB
17 Oct 2023 6.13 PM
root / root
0644
versionpredicate.cpython-38.opt-2.pyc
2.595 KB
17 Oct 2023 6.13 PM
root / root
0644
versionpredicate.cpython-38.pyc
5.017 KB
17 Oct 2023 6.13 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF