91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

怎么用python遞歸解壓所有文件

小億
113
2023-10-27 00:50:07
欄目: 編程語言

要用Python遞歸解壓所有文件,你可以使用zipfile模塊來操作壓縮文件。下面是一個使用遞歸的示例代碼:

import os
import zipfile

def unzip_all_files(directory):
    for item in os.listdir(directory):
        item_path = os.path.join(directory, item)
        if os.path.isfile(item_path) and item.endswith('.zip'):
            # 打開壓縮文件
            with zipfile.ZipFile(item_path, 'r') as zip_ref:
                # 解壓文件到當前目錄
                zip_ref.extractall(directory)
            # 刪除壓縮文件
            os.remove(item_path)
        elif os.path.isdir(item_path):
            # 遞歸調用解壓函數
            unzip_all_files(item_path)

# 指定要解壓的目錄
directory_to_unzip = 'path/to/directory'
unzip_all_files(directory_to_unzip)

在上面的代碼中,首先定義了一個unzip_all_files函數,該函數接受一個目錄路徑作為參數。然后,遍歷目錄中的所有項目,如果是一個壓縮文件(以.zip結尾),將其解壓到當前目錄,并刪除原始壓縮文件。如果是一個子目錄,則遞歸調用unzip_all_files函數以解壓其中的文件。最后,指定要解壓縮的目錄,并調用unzip_all_files函數來開始解壓。

0
东阳市| 大邑县| 卢龙县| 鹤庆县| 洛南县| 个旧市| 宜州市| 安仁县| 县级市| 江津市| 公主岭市| 阿鲁科尔沁旗| 兴安盟| 永善县| 龙州县| 河东区| 鹤山市| 曲沃县| 长沙市| 海兴县| 鄄城县| 双流县| 永川市| 靖边县| 临漳县| 康马县| 贵定县| 天等县| 阳山县| 崇左市| 烟台市| 文成县| 调兵山市| 航空| 蒲城县| 兰考县| 军事| 六盘水市| 缙云县| 武山县| 阳朔县|