Python標準庫shutil模組使用方法解析

2022-10-03 09:33:08 字數 818 閱讀 6398

shutil.rmtee

刪除目錄及以內的所有檔案。

import shutil

shutil.rmtree(r'd:\python\222') #包括222在內的所有檔案全部刪除。

shutil.move

重新命名檔案或資料夾

impwww.cppcns.comort shutil

shutil.move(源名稱,更改後名稱)

import shutil

shutil.move(r'd:\python\b.log',r'd:\pyth程式設計客棧on\a.log')

shutil.make_archive

壓縮檔案

import shutil

# shutil.make_archive('將要新建的名稱或路徑','檔案字尾','原資料夾路徑')

shutil.make_archive(r'd:\a','zip',r'd:\python程式設計客棧1111',)

shutil.unpack_archive

解壓檔案:

解壓路徑如果有就進入,如果沒有就新建。

# shutil.unpack_archive('原始檔全名(路徑)',extract_dir='解壓路徑,不寫為當前路徑',format='檔案字尾')

shutil.unpack_archiwww.cppcns.comve(r'd:/python/a.zip',extract_dir=r'd:/11111',format='zip')

本文標題: python標準庫shutil模組使用方法解析

本文位址: /jiaoben/python/302591.html

Python 標準庫之 shutil

shutil是shell utilities的簡寫,它提供了大量的檔案和目錄的高階操作。特別針對檔案 目錄的拷貝和刪除,主要功能為目錄和檔案操作以及壓縮操作。函式說明 shutil.copyfile src,dst 從源src複製到dst中去。如果當前的dst已存在的話就會被覆蓋掉,src 和 ds...

python 標準庫之shutil

pip install shutil1,複製檔案 1.shutil.copy src,dst 拷貝檔案和許可權 返回值是複製之後的路徑例子 import shutil shutil.copy f1.log f2.log 2,shutil.copy2 src,dst 拷貝檔案和狀態資訊 import ...

Python標準庫 shutil模組

import shutil shutil.copyfileobj fsrc,fdst length 將檔案類物件 fsrc 的內容拷貝到檔案類物件 fdst。整數值 length 如果給出則為緩衝區大小。特別地,length為負值表示拷貝資料時不對源資料進行分塊迴圈處理 預設情況下會分塊讀取資料以避...