1. 程式人生 > >python解壓縮tar.gz檔案

python解壓縮tar.gz檔案

import tarfile
tar = tarfile.open(“/tmp/tartest.tar.gz”)
names = tar.getnames()
for name in names:
tar.extract(name,path=”/tmp”)
tar.close()