$22 GRAYBYTE WORDPRESS FILE MANAGER $48

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

/usr/lib64/python3.6/distutils/__pycache__/

HOME
Current File : /usr/lib64/python3.6/distutils/__pycache__//file_util.cpython-36.opt-1.pyc
3


 \��@sZdZddlZddlmZddlmZdddd�Zddd�Zddd�Zddd�Z	dd�Z
dS)zFdistutils.file_util

Utility functions for operating on single files.
�N)�DistutilsFileError)�logZcopyingzhard linkingzsymbolically linking)N�hard�sym�icNCs�d}d}�zvyt|d�}Wn4tk
rN}ztd||jf��WYdd}~XnXtjj|�r�ytj|�Wn4tk
r�}ztd||jf��WYdd}~XnXyt|d�}Wn4tk
r�}ztd||jf��WYdd}~XnXx�y|j|�}Wn6tk
�r*}ztd||jf��WYdd}~XnX|�s4Py|j	|�Wq�tk
�rx}ztd||jf��WYdd}~Xq�Xq�WWd|�r�|j
�|�r�|j
�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)�open�OSErrorr�strerror�os�path�exists�unlink�read�write�close)�src�dst�buffer_sizeZfsrcZfdst�eZbuf�r�+/usr/lib64/python3.6/distutils/file_util.py�_copy_file_contentssF	$"""*r�cCsddlm}ddlm}	m}
m}m}tjj	|�s<t
d|��tjj|�rd|}
tjj|tjj
|��}ntjj|�}
|r�|||�r�|dkr�tjd|�|dfSyt|}Wn tk
r�td|��YnX|dk�rtjj
|�tjj
|�k�rtjd|||
�ntjd|||�|�r|dfS|d	k�rttjj|��oBtjj||��s�ytj||�|dfStk
�rpYnXn<|d
k�r�tjj|��o�tjj||��s�tj||�|dfSt||�|�s�|�rtj|�}|�r�tj|||	||
f�|�rtj||||��|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_fileCsT!





r6c(Cs�ddlm}m}m}m}m}ddl}	|dkr:tjd||�|rB|S||�sVt	d|��||�rrt
jj|||��}n||�r�t	d||f��|||��s�t	d||f��d	}
yt
j
||�WnPtk
�r
}z2|j\}}
||	jkr�d
}
nt	d|||
f��WYdd}~XnX|
�r�t|||d�yt
j|�Wnhtk
�r�}zJ|j\}}
yt
j|�Wntk
�rpYnXt	d
||||
f��WYdd}~XnX|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)r1zAcouldn't move '%s' to '%s' by copy/delete: delete '%s' failed: %s)Zos.pathrr!r"r$r%�errnorr*rrr
r#�renamer
�argsZEXDEVr6r)rrr1r2rr!r"r$r%r7Zcopy_itrZnum�msgrrr�	move_file�sR

"
"r;c
Cs:t|d�}z x|D]}|j|d�qWWd|j�XdS)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


rB�@)rC)rrrNrr)rr)�__doc__rZdistutils.errorsrZ	distutilsrr'rr6r;rBrrrr�<module>s
3
c
=

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
28 Feb 2025 12.45 AM
root / root
0755
__init__.cpython-36.opt-1.pyc
0.369 KB
5 Dec 2024 1.10 PM
root / root
0644
__init__.cpython-36.opt-2.pyc
0.191 KB
5 Dec 2024 1.10 PM
root / root
0644
__init__.cpython-36.pyc
0.369 KB
5 Dec 2024 1.10 PM
root / root
0644
_msvccompiler.cpython-36.opt-1.pyc
13.185 KB
5 Dec 2024 1.10 PM
root / root
0644
_msvccompiler.cpython-36.opt-2.pyc
12.392 KB
5 Dec 2024 1.10 PM
root / root
0644
_msvccompiler.cpython-36.pyc
13.244 KB
5 Dec 2024 1.10 PM
root / root
0644
archive_util.cpython-36.opt-1.pyc
6.374 KB
5 Dec 2024 1.10 PM
root / root
0644
archive_util.cpython-36.opt-2.pyc
4.381 KB
5 Dec 2024 1.10 PM
root / root
0644
archive_util.cpython-36.pyc
6.374 KB
5 Dec 2024 1.10 PM
root / root
0644
bcppcompiler.cpython-36.opt-1.pyc
6.329 KB
5 Dec 2024 1.10 PM
root / root
0644
bcppcompiler.cpython-36.opt-2.pyc
6.048 KB
5 Dec 2024 1.10 PM
root / root
0644
bcppcompiler.cpython-36.pyc
6.329 KB
5 Dec 2024 1.10 PM
root / root
0644
ccompiler.cpython-36.opt-1.pyc
32.441 KB
5 Dec 2024 1.10 PM
root / root
0644
ccompiler.cpython-36.opt-2.pyc
16.475 KB
5 Dec 2024 1.10 PM
root / root
0644
ccompiler.cpython-36.pyc
32.565 KB
5 Dec 2024 1.10 PM
root / root
0644
cmd.cpython-36.opt-1.pyc
14.637 KB
5 Dec 2024 1.10 PM
root / root
0644
cmd.cpython-36.opt-2.pyc
8.78 KB
5 Dec 2024 1.10 PM
root / root
0644
cmd.cpython-36.pyc
14.637 KB
5 Dec 2024 1.10 PM
root / root
0644
config.cpython-36.opt-1.pyc
3.405 KB
5 Dec 2024 1.10 PM
root / root
0644
config.cpython-36.opt-2.pyc
3.022 KB
5 Dec 2024 1.10 PM
root / root
0644
config.cpython-36.pyc
3.405 KB
5 Dec 2024 1.10 PM
root / root
0644
core.cpython-36.opt-1.pyc
6.644 KB
5 Dec 2024 1.10 PM
root / root
0644
core.cpython-36.opt-2.pyc
3.336 KB
5 Dec 2024 1.10 PM
root / root
0644
core.cpython-36.pyc
6.644 KB
5 Dec 2024 1.10 PM
root / root
0644
cygwinccompiler.cpython-36.opt-1.pyc
8.309 KB
5 Dec 2024 1.10 PM
root / root
0644
cygwinccompiler.cpython-36.opt-2.pyc
6.717 KB
5 Dec 2024 1.10 PM
root / root
0644
cygwinccompiler.cpython-36.pyc
8.309 KB
5 Dec 2024 1.10 PM
root / root
0644
debug.cpython-36.opt-1.pyc
0.184 KB
5 Dec 2024 1.10 PM
root / root
0644
debug.cpython-36.opt-2.pyc
0.184 KB
5 Dec 2024 1.10 PM
root / root
0644
debug.cpython-36.pyc
0.184 KB
5 Dec 2024 1.10 PM
root / root
0644
dep_util.cpython-36.opt-1.pyc
2.641 KB
5 Dec 2024 1.10 PM
root / root
0644
dep_util.cpython-36.opt-2.pyc
1.23 KB
5 Dec 2024 1.10 PM
root / root
0644
dep_util.cpython-36.pyc
2.641 KB
5 Dec 2024 1.10 PM
root / root
0644
dir_util.cpython-36.opt-1.pyc
5.668 KB
5 Dec 2024 1.10 PM
root / root
0644
dir_util.cpython-36.opt-2.pyc
3.346 KB
5 Dec 2024 1.10 PM
root / root
0644
dir_util.cpython-36.pyc
5.668 KB
5 Dec 2024 1.10 PM
root / root
0644
dist.cpython-36.opt-1.pyc
33.411 KB
5 Dec 2024 1.10 PM
root / root
0644
dist.cpython-36.opt-2.pyc
24.333 KB
5 Dec 2024 1.10 PM
root / root
0644
dist.cpython-36.pyc
33.411 KB
5 Dec 2024 1.10 PM
root / root
0644
errors.cpython-36.opt-1.pyc
5.346 KB
5 Dec 2024 1.10 PM
root / root
0644
errors.cpython-36.opt-2.pyc
2.77 KB
5 Dec 2024 1.10 PM
root / root
0644
errors.cpython-36.pyc
5.346 KB
5 Dec 2024 1.10 PM
root / root
0644
extension.cpython-36.opt-1.pyc
6.787 KB
5 Dec 2024 1.10 PM
root / root
0644
extension.cpython-36.opt-2.pyc
3.379 KB
5 Dec 2024 1.10 PM
root / root
0644
extension.cpython-36.pyc
6.787 KB
5 Dec 2024 1.10 PM
root / root
0644
fancy_getopt.cpython-36.opt-1.pyc
10.257 KB
5 Dec 2024 1.10 PM
root / root
0644
fancy_getopt.cpython-36.opt-2.pyc
7.512 KB
5 Dec 2024 1.10 PM
root / root
0644
fancy_getopt.cpython-36.pyc
10.403 KB
5 Dec 2024 1.10 PM
root / root
0644
file_util.cpython-36.opt-1.pyc
5.759 KB
5 Dec 2024 1.10 PM
root / root
0644
file_util.cpython-36.opt-2.pyc
3.672 KB
5 Dec 2024 1.10 PM
root / root
0644
file_util.cpython-36.pyc
5.759 KB
5 Dec 2024 1.10 PM
root / root
0644
filelist.cpython-36.opt-1.pyc
9.546 KB
5 Dec 2024 1.10 PM
root / root
0644
filelist.cpython-36.opt-2.pyc
6.742 KB
5 Dec 2024 1.10 PM
root / root
0644
filelist.cpython-36.pyc
9.634 KB
5 Dec 2024 1.10 PM
root / root
0644
log.cpython-36.opt-1.pyc
2.245 KB
5 Dec 2024 1.10 PM
root / root
0644
log.cpython-36.opt-2.pyc
2.186 KB
5 Dec 2024 1.10 PM
root / root
0644
log.cpython-36.pyc
2.245 KB
5 Dec 2024 1.10 PM
root / root
0644
msvc9compiler.cpython-36.opt-1.pyc
16.974 KB
5 Dec 2024 1.10 PM
root / root
0644
msvc9compiler.cpython-36.opt-2.pyc
15.395 KB
5 Dec 2024 1.10 PM
root / root
0644
msvc9compiler.cpython-36.pyc
17.035 KB
5 Dec 2024 1.10 PM
root / root
0644
msvccompiler.cpython-36.opt-1.pyc
14.227 KB
5 Dec 2024 1.10 PM
root / root
0644
msvccompiler.cpython-36.opt-2.pyc
12.683 KB
5 Dec 2024 1.10 PM
root / root
0644
msvccompiler.cpython-36.pyc
14.227 KB
5 Dec 2024 1.10 PM
root / root
0644
spawn.cpython-36.opt-1.pyc
4.876 KB
5 Dec 2024 1.10 PM
root / root
0644
spawn.cpython-36.opt-2.pyc
3.603 KB
5 Dec 2024 1.10 PM
root / root
0644
spawn.cpython-36.pyc
4.876 KB
5 Dec 2024 1.10 PM
root / root
0644
sysconfig.cpython-36.opt-1.pyc
11.639 KB
5 Dec 2024 1.10 PM
root / root
0644
sysconfig.cpython-36.opt-2.pyc
8.235 KB
5 Dec 2024 1.10 PM
root / root
0644
sysconfig.cpython-36.pyc
11.639 KB
5 Dec 2024 1.10 PM
root / root
0644
text_file.cpython-36.opt-1.pyc
8.26 KB
5 Dec 2024 1.10 PM
root / root
0644
text_file.cpython-36.opt-2.pyc
3.277 KB
5 Dec 2024 1.10 PM
root / root
0644
text_file.cpython-36.pyc
8.26 KB
5 Dec 2024 1.10 PM
root / root
0644
unixccompiler.cpython-36.opt-1.pyc
6.69 KB
5 Dec 2024 1.10 PM
root / root
0644
unixccompiler.cpython-36.opt-2.pyc
6.076 KB
5 Dec 2024 1.10 PM
root / root
0644
unixccompiler.cpython-36.pyc
6.69 KB
5 Dec 2024 1.10 PM
root / root
0644
util.cpython-36.opt-1.pyc
15.159 KB
5 Dec 2024 1.10 PM
root / root
0644
util.cpython-36.opt-2.pyc
9.24 KB
5 Dec 2024 1.10 PM
root / root
0644
util.cpython-36.pyc
15.159 KB
5 Dec 2024 1.10 PM
root / root
0644
version.cpython-36.opt-1.pyc
7.138 KB
5 Dec 2024 1.10 PM
root / root
0644
version.cpython-36.opt-2.pyc
3.93 KB
5 Dec 2024 1.10 PM
root / root
0644
version.cpython-36.pyc
7.182 KB
5 Dec 2024 1.10 PM
root / root
0644
versionpredicate.cpython-36.opt-1.pyc
4.964 KB
5 Dec 2024 1.10 PM
root / root
0644
versionpredicate.cpython-36.opt-2.pyc
2.542 KB
5 Dec 2024 1.10 PM
root / root
0644
versionpredicate.cpython-36.pyc
4.964 KB
5 Dec 2024 1.10 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF