如何将“tar”shell命令转换为Python

问题描述 投票:0回答:1

我是编程的新手,我被赋予了将shell命令转换为python的任务,作为一种自动化进程的方法。以下是命令:

$ cd /users/me/repos/
$ mv -i file file-1.0.0
$ tar cfz file-1.0.0.tgz file-1.0.0
$ mv -i file-1.0.0 file
$ tar xfz file-1.0.0.tgz

除了tar命令,我知道怎么做。我不确定他们做了什么以及如何在Python中实现它们。

linux shell python tar
1个回答
1
投票

这将路径'tar_path'中的目录'tar_file'创建,并创建一个名为'tar_file_file.tgz'的压缩版本。然后将内容解压缩到目录'hello'

import os
import tarfile
from contextlib import closing

fun = "/users/me/temp/fun/"
tar_path = "{0}tar_file".format(fun)
hello = '{0}hello'.format(fun)

def makedir(dir_path):
    if not os.path.exists(dir_path):
        os.makedirs(dir_path)

makedir(fun)
os.chdir(fun)
makedir(hello)

    #create tgz, enable gzip, create archive file
def make_tarfile(output_filename, source_dir):
    with closing(tarfile.open(output_filename, "w:gz")) as tar:
        tar.add(source_dir, arcname = os.path.basename(source_dir))
    tar.close()

    #extract, unpack in gzip format, read archived content
def extract_tarfile(output_filename, source_dir):
    t = tarfile.open(output_filename, "r:gz")
    t.extractall(source_dir)


make_tarfile('tar_file_file.tgz', tar_path)
extract_tarfile('tar_file_file.tgz', hello)
© www.soinside.com 2019 - 2024. All rights reserved.