Answers for "decompress tar python"

0

decompress tar python

# importing the "tarfile" module
import tarfile
with tarfile.open('gfg.tar.gz') as file:
	file.extractall('./Destination_FolderName')
Posted by: Guest on October-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language