多数のファイルを含むtarファイルがあります。tarファイルを解凍せずに、ファイルの内容を読み取り、文字、スペース、改行文字の総数を含む合計文字数を示すPythonスクリプトを作成する必要があります。
多数のファイルを含むtarファイルがあります。tarファイルを解凍せずに、ファイルの内容を読み取り、文字、スペース、改行文字の総数を含む合計文字数を示すPythonスクリプトを作成する必要があります。
回答:
あなたが使用することができます getmembers()
>>> import tarfile
>>> tar = tarfile.open("test.tar")
>>> tar.getmembers()
その後、を使用extractfile()
してメンバーをファイルオブジェクトとして抽出できます。ほんの一例
import tarfile,os
import sys
os.chdir("/tmp/foo")
tar = tarfile.open("test.tar")
for member in tar.getmembers():
f=tar.extractfile(member)
content=f.read()
print "%s has %d newlines" %(member, content.count("\n"))
print "%s has %d spaces" % (member,content.count(" "))
print "%s has %d characters" % (member, len(content))
sys.exit()
tar.close()
f
上記の例のファイルオブジェクトではread()
、readlines()
などを使用できます。
'r|'
オプションを使用したにもかかわらず、tarfileモジュールがRAMを消費しているようです。
tar.members = []
。詳細はこちら:bit.ly/JKXrg6
tar.getmembers()
にそれを置く複数回呼び出されるfor member in tar.getmembers()
ループを?
tarfileモジュールを使用する必要があります。具体的には、TarFileクラスのインスタンスを使用してファイルにアクセスし、TarFile.getnames()を使用して名前にアクセスします。
| getnames(self)
| Return the members of the archive as a list of their names. It has
| the same order as the list returned by getmembers().
代わりにコンテンツを読みたい場合は、この方法を使用します
| extractfile(self, member)
| Extract a member from the archive as a file object. `member' may be
| a filename or a TarInfo object. If `member' is a regular file, a
| file-like object is returned. If `member' is a link, a file-like
| object is constructed from the link's target. If `member' is none of
| the above, None is returned.
| The file-like object is read-only and provides the following
| methods: read(), readline(), readlines(), seek() and tell()
myFile = myArchive.extractfile( dict(zip(myArchive.getnames(), myArchive.getmembers()))['path/to/file'] ).read()
@ stefano-boriniによって言及されたメソッドの実装次のようなファイル名を介してtarアーカイブメンバーにアクセスします
#python3
myFile = myArchive.extractfile(
dict(zip(
myArchive.getnames(),
myArchive.getmembers()
))['path/to/file']
).read()`
クレジット:
dict(zip(
https://stackoverflow.com/a/209854/1695680からtarfile.getnames
https://stackoverflow.com/a/2018523/1695680からtarfile.list()を使用できますex:
filename = "abc.tar.bz2"
with open( filename , mode='r:bz2') as f1:
print(f1.list())
これらのデータを取得した後。この出力を操作またはファイルに書き込んで、必要に応じて実行できます。