1

私は、すべての MP3 ファイルを読み取る関数を、Mutagen が読み取れる任意の種類のファイルを読み取るように変更するタスクを与えられました。手でやればいいのでは?(IE if .endswith = this or that)、またはこれを達成する一般的な方法はありますか?

ループは次のようになります。

for root, dirs, files in os.walk("."):
    for filename in files:
        if filename.lower().endswith(".mp3"):
            fullname = os.path.join(root, filename)
4

1 に答える 1