zipファイルをPythonで展開する方法

PythonでZIPファイルを展開する方法はいくつかあります。

  1. zipfile
  2. zipfile.ZipFile
  3. すべて抽出する
  4. 抽出する()
import zipfile
# 解压整个zip文件
with zipfile.ZipFile('example.zip', 'r') as zip_ref:
zip_ref.extractall('extracted_folder')
# 解压指定文件
with zipfile.ZipFile('example.zip', 'r') as zip_ref:
zip_ref.extract('file_to_extract.txt', 'destination_folder')
  1. シャトル
  2. shutil.unpack_archive ネイティブの日本語への言い換え
  3. shutil.copy2
import shutil
# 解压整个zip文件
shutil.unpack_archive('example.zip', 'extracted_folder')
# 解压指定文件
shutil.copy2('example.zip', 'destination_folder/file_to_extract.txt')

それぞれの方法で ZIP ファイルを展開できますが、使用する方法はあなたのニーズと好みに応じて選択できます。

コメントを残す 0

Your email address will not be published. Required fields are marked *


广告
広告は10秒後に閉じます。
bannerAds