$89 GRAYBYTE WORDPRESS FILE MANAGER $14

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.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python35/lib64/python3.5/distutils/__pycache__/

HOME
Current File : /opt/alt/python35/lib64/python3.5/distutils/__pycache__//file_util.cpython-35.pyc


��Yf��@s�dZddlZddlmZddlmZdddddd	iZddd
�Zdddddddd�Zdddd�Z	dd�Z
dS)zFdistutils.file_util

Utility functions for operating on single files.
�N)�DistutilsFileError)�logZcopying�hardzhard linking�symzsymbolically linking�icNCs�d}d}z�yt|d�}Wn>tk
rb}ztd||jf��WYdd}~XnXtjj|�r�ytj|�Wn>tk
r�}ztd||jf��WYdd}~XnXyt|d�}Wn>tk
r}ztd||jf��WYdd}~XnXx�y|j|�}Wn>tk
rq}ztd||jf��WYdd}~XnX|syPy|j	|�Wqtk
r�}ztd||jf��WYdd}~XqXqWWd|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�dstZbuffer_sizeZfsrcZfdst�eZbuf�r�8/opt/alt/python35/lib64/python3.5/distutils/file_util.py�_copy_file_contentssF	,)))1
r�cCs�ddlm}ddlm}	m}
m}m}tjj	|�sTt
d|��tjj|�r�|}
tjj|tjj
|��}ntjj|�}
|r�|||�r�|dkr�tjd|�|dfSyt|}Wn"tk
rtd|��YnX|dkrptjj
|�tjj
|�krZtjd|||
�ntjd|||�|r�|dfS|d	kr�tjj|�o�tjj||�s6ytj||�|dfSWq6tk
r�Yq6XnM|d
kr6tjj|�otjj||�s6tj||�|dfSt||�|sO|r�tj|�}|r�tj|||	||
f�|r�tj||||��|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!"
$

$
'
'

r5c(Csddlm}m}m}m}m}ddl}	|dkrStjd||�|r]|S||�syt	d|��||�r�t
jj|||��}n"||�r�t	d||f��|||��s�t	d||f��d	}
yt
j
||�Wnetk
rn}zE|j\}}
||	jkrCd
}
nt	d|||
f��WYdd}~XnX|
rt||d|�yt
j|�Wnvtk
r}zV|j\}}
yt
j|�Wntk
r�YnXt	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': %sr0zAcouldn'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�sR(	)
)r:c
CsGt|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

rAi@)�__doc__rZdistutils.errorsrZ	distutilsrr&rr5r:rArrrr�<module>s3	c=


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
12 Aug 2024 8.41 AM
root / linksafe
0755
__init__.cpython-35.opt-1.pyc
0.396 KB
31 May 2024 1.51 PM
root / linksafe
0644
__init__.cpython-35.opt-2.pyc
0.207 KB
31 May 2024 1.51 PM
root / linksafe
0644
__init__.cpython-35.pyc
0.396 KB
31 May 2024 1.51 PM
root / linksafe
0644
_msvccompiler.cpython-35.opt-1.pyc
13.183 KB
31 May 2024 1.51 PM
root / linksafe
0644
_msvccompiler.cpython-35.opt-2.pyc
12.376 KB
31 May 2024 1.51 PM
root / linksafe
0644
_msvccompiler.cpython-35.pyc
13.248 KB
31 May 2024 1.51 PM
root / linksafe
0644
archive_util.cpython-35.opt-1.pyc
6.645 KB
31 May 2024 1.51 PM
root / linksafe
0644
archive_util.cpython-35.opt-2.pyc
4.64 KB
31 May 2024 1.51 PM
root / linksafe
0644
archive_util.cpython-35.pyc
6.645 KB
31 May 2024 1.51 PM
root / linksafe
0644
bcppcompiler.cpython-35.opt-1.pyc
7.075 KB
31 May 2024 1.51 PM
root / linksafe
0644
bcppcompiler.cpython-35.opt-2.pyc
6.78 KB
31 May 2024 1.51 PM
root / linksafe
0644
bcppcompiler.cpython-35.pyc
7.075 KB
31 May 2024 1.51 PM
root / linksafe
0644
ccompiler.cpython-35.opt-1.pyc
33.824 KB
31 May 2024 1.51 PM
root / linksafe
0644
ccompiler.cpython-35.opt-2.pyc
17.844 KB
31 May 2024 1.51 PM
root / linksafe
0644
ccompiler.cpython-35.pyc
33.985 KB
31 May 2024 1.51 PM
root / linksafe
0644
cmd.cpython-35.opt-1.pyc
15.269 KB
31 May 2024 1.51 PM
root / linksafe
0644
cmd.cpython-35.opt-2.pyc
9.396 KB
31 May 2024 1.51 PM
root / linksafe
0644
cmd.cpython-35.pyc
15.269 KB
31 May 2024 1.51 PM
root / linksafe
0644
config.cpython-35.opt-1.pyc
3.713 KB
31 May 2024 1.51 PM
root / linksafe
0644
config.cpython-35.opt-2.pyc
3.316 KB
31 May 2024 1.51 PM
root / linksafe
0644
config.cpython-35.pyc
3.713 KB
31 May 2024 1.51 PM
root / linksafe
0644
core.cpython-35.opt-1.pyc
6.88 KB
31 May 2024 1.51 PM
root / linksafe
0644
core.cpython-35.opt-2.pyc
3.561 KB
31 May 2024 1.51 PM
root / linksafe
0644
core.cpython-35.pyc
6.88 KB
31 May 2024 1.51 PM
root / linksafe
0644
cygwinccompiler.cpython-35.opt-1.pyc
8.997 KB
31 May 2024 1.51 PM
root / linksafe
0644
cygwinccompiler.cpython-35.opt-2.pyc
7.39 KB
31 May 2024 1.51 PM
root / linksafe
0644
cygwinccompiler.cpython-35.pyc
8.997 KB
31 May 2024 1.51 PM
root / linksafe
0644
debug.cpython-35.opt-1.pyc
0.206 KB
31 May 2024 1.51 PM
root / linksafe
0644
debug.cpython-35.opt-2.pyc
0.196 KB
31 May 2024 1.51 PM
root / linksafe
0644
debug.cpython-35.pyc
0.206 KB
31 May 2024 1.51 PM
root / linksafe
0644
dep_util.cpython-35.opt-1.pyc
2.786 KB
31 May 2024 1.51 PM
root / linksafe
0644
dep_util.cpython-35.opt-2.pyc
1.364 KB
31 May 2024 1.51 PM
root / linksafe
0644
dep_util.cpython-35.pyc
2.786 KB
31 May 2024 1.51 PM
root / linksafe
0644
dir_util.cpython-35.opt-1.pyc
6.05 KB
31 May 2024 1.51 PM
root / linksafe
0644
dir_util.cpython-35.opt-2.pyc
3.716 KB
31 May 2024 1.51 PM
root / linksafe
0644
dir_util.cpython-35.pyc
6.05 KB
31 May 2024 1.51 PM
root / linksafe
0644
dist.cpython-35.opt-1.pyc
35.598 KB
31 May 2024 1.51 PM
root / linksafe
0644
dist.cpython-35.opt-2.pyc
26.504 KB
31 May 2024 1.51 PM
root / linksafe
0644
dist.cpython-35.pyc
35.598 KB
31 May 2024 1.51 PM
root / linksafe
0644
errors.cpython-35.opt-1.pyc
5.583 KB
31 May 2024 1.51 PM
root / linksafe
0644
errors.cpython-35.opt-2.pyc
2.958 KB
31 May 2024 1.51 PM
root / linksafe
0644
errors.cpython-35.pyc
5.583 KB
31 May 2024 1.51 PM
root / linksafe
0644
extension.cpython-35.opt-1.pyc
7.23 KB
31 May 2024 1.51 PM
root / linksafe
0644
extension.cpython-35.opt-2.pyc
3.809 KB
31 May 2024 1.51 PM
root / linksafe
0644
extension.cpython-35.pyc
7.23 KB
31 May 2024 1.51 PM
root / linksafe
0644
fancy_getopt.cpython-35.opt-1.pyc
11.055 KB
31 May 2024 1.51 PM
root / linksafe
0644
fancy_getopt.cpython-35.opt-2.pyc
8.294 KB
31 May 2024 1.51 PM
root / linksafe
0644
fancy_getopt.cpython-35.pyc
11.222 KB
31 May 2024 1.51 PM
root / linksafe
0644
file_util.cpython-35.opt-1.pyc
6.148 KB
31 May 2024 1.51 PM
root / linksafe
0644
file_util.cpython-35.opt-2.pyc
4.05 KB
31 May 2024 1.51 PM
root / linksafe
0644
file_util.cpython-35.pyc
6.148 KB
31 May 2024 1.51 PM
root / linksafe
0644
filelist.cpython-35.opt-1.pyc
10.083 KB
31 May 2024 1.51 PM
root / linksafe
0644
filelist.cpython-35.opt-2.pyc
7.266 KB
31 May 2024 1.51 PM
root / linksafe
0644
filelist.cpython-35.pyc
10.083 KB
31 May 2024 1.51 PM
root / linksafe
0644
log.cpython-35.opt-1.pyc
2.42 KB
31 May 2024 1.51 PM
root / linksafe
0644
log.cpython-35.opt-2.pyc
2.349 KB
31 May 2024 1.51 PM
root / linksafe
0644
log.cpython-35.pyc
2.42 KB
31 May 2024 1.51 PM
root / linksafe
0644
msvc9compiler.cpython-35.opt-1.pyc
18.656 KB
31 May 2024 1.51 PM
root / linksafe
0644
msvc9compiler.cpython-35.opt-2.pyc
17.062 KB
31 May 2024 1.51 PM
root / linksafe
0644
msvc9compiler.cpython-35.pyc
18.722 KB
31 May 2024 1.51 PM
root / linksafe
0644
msvccompiler.cpython-35.opt-1.pyc
15.567 KB
31 May 2024 1.51 PM
root / linksafe
0644
msvccompiler.cpython-35.opt-2.pyc
14.012 KB
31 May 2024 1.51 PM
root / linksafe
0644
msvccompiler.cpython-35.pyc
15.567 KB
31 May 2024 1.51 PM
root / linksafe
0644
spawn.cpython-35.opt-1.pyc
5.241 KB
31 May 2024 1.51 PM
root / linksafe
0644
spawn.cpython-35.opt-2.pyc
3.956 KB
31 May 2024 1.51 PM
root / linksafe
0644
spawn.cpython-35.pyc
5.241 KB
31 May 2024 1.51 PM
root / linksafe
0644
sysconfig.cpython-35.opt-1.pyc
12.795 KB
31 May 2024 1.51 PM
root / linksafe
0644
sysconfig.cpython-35.opt-2.pyc
9.377 KB
31 May 2024 1.51 PM
root / linksafe
0644
sysconfig.cpython-35.pyc
12.795 KB
31 May 2024 1.51 PM
root / linksafe
0644
text_file.cpython-35.opt-1.pyc
8.684 KB
31 May 2024 1.51 PM
root / linksafe
0644
text_file.cpython-35.opt-2.pyc
3.688 KB
31 May 2024 1.51 PM
root / linksafe
0644
text_file.cpython-35.pyc
8.684 KB
31 May 2024 1.51 PM
root / linksafe
0644
unixccompiler.cpython-35.opt-1.pyc
7.427 KB
31 May 2024 1.51 PM
root / linksafe
0644
unixccompiler.cpython-35.opt-2.pyc
6.801 KB
31 May 2024 1.51 PM
root / linksafe
0644
unixccompiler.cpython-35.pyc
7.427 KB
31 May 2024 1.51 PM
root / linksafe
0644
util.cpython-35.opt-1.pyc
16.138 KB
31 May 2024 1.51 PM
root / linksafe
0644
util.cpython-35.opt-2.pyc
10.205 KB
31 May 2024 1.51 PM
root / linksafe
0644
util.cpython-35.pyc
16.138 KB
31 May 2024 1.51 PM
root / linksafe
0644
version.cpython-35.opt-1.pyc
7.541 KB
31 May 2024 1.51 PM
root / linksafe
0644
version.cpython-35.opt-2.pyc
4.315 KB
31 May 2024 1.51 PM
root / linksafe
0644
version.cpython-35.pyc
7.591 KB
31 May 2024 1.51 PM
root / linksafe
0644
versionpredicate.cpython-35.opt-1.pyc
5.243 KB
31 May 2024 1.51 PM
root / linksafe
0644
versionpredicate.cpython-35.opt-2.pyc
2.808 KB
31 May 2024 1.51 PM
root / linksafe
0644
versionpredicate.cpython-35.pyc
5.243 KB
31 May 2024 1.51 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF