“Lea el archivo Tar.gz Python” Código de respuesta

archivos tar.gz

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

Lea el archivo 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

Respuestas similares a “Lea el archivo Tar.gz Python”

Preguntas similares a “Lea el archivo Tar.gz Python”

Más respuestas relacionadas con “Lea el archivo Tar.gz Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código