“Przeczytaj phil Tar.GZ Python” Kod odpowiedzi

Pliki TAR.GZ

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

Przeczytaj phil 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

Odpowiedzi podobne do “Przeczytaj phil Tar.GZ Python”

Pytania podobne do “Przeczytaj phil Tar.GZ Python”

Więcej pokrewnych odpowiedzi na “Przeczytaj phil Tar.GZ Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu