“Leia o arquivo TAR.GZ Python” Respostas de código

arquivos tar.gz

tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
Colorful Cardinal

Leia o arquivo TAR.GZ Python

The docs tell us that None is returned by extractfile() if the member is a not a regular file or link.

One possible solution is to skip over the None results:

tar = tarfile.open("filename.tar.gz", "r:gz")
for member in tar.getmembers():
     f = tar.extractfile(member)
     if f is not None:
         content = f.read()
Santino

Respostas semelhantes a “Leia o arquivo TAR.GZ Python”

Perguntas semelhantes a “Leia o arquivo TAR.GZ Python”

Mais respostas relacionadas para “Leia o arquivo TAR.GZ Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código