Python經常使用模塊——文件複製模塊shutil

Python經常使用模塊——文件複製模塊shutil

shutil模塊

高級的文件、文件夾、壓縮包處理模塊python

shutil.copyfileobj(fsrc, fdst)日誌

將文件內容拷貝到另外一個文件中code

import shutil
shutil.copyfileobj(open('old.xml','r'), open('new.xml', 'w'))

shutil.copyfile(src, dst)orm

拷貝文件xml

shutil.copyfile('f1.log', 'f2.log') #目標文件無需存在

shutil.copymode(src, dst)對象

僅拷貝權限。內容、組、用戶均不變遞歸

shutil.copymode('f1.log', 'f2.log') #目標文件必須存在

shutil.copystat(src, dst)ip

僅拷貝狀態的信息,包括:mode bits, atime, mtime, flagsit

shutil.copystat('f1.log', 'f2.log') #目標文件必須存在

shutil.copy(src, dst)form

拷貝文件和權限

import shutil
shutil.copy('f1.log', 'f2.log')

shutil.copy2(src, dst)

拷貝文件和狀態信息

import shutil
shutil.copy2('f1.log', 'f2.log')

shutil.ignore_patterns(*patterns)

shutil.copytree(src, dst, symlinks=Flase, ignore=None)

遞歸的去拷貝文件夾

import shutil
shutil.copytree('folder1', 'folder2', ignore=shutil.ignore_patterns('*.pyc', 'tmp*')) #目標目錄不能存在,注意對folder2目錄父級目錄要有可寫權限,ignore的意思是排除

shutil.rmtree(path[,ignore_errors[,onerror]])

遞歸的去刪除文件

import shutil
shutil.rmtree('folder1')

shutil.move(src, dst)

遞歸的去移動文件,它相似mv命令,其實就是重命名。

import shutil
shutil.move('folder1', 'folder3')

shutil.make_archive(base_name, format, ...)

建立壓縮包並返回文件路徑,例如:zip、tar

可選參數以下:

  • base_name: 壓縮包的文件名,也能夠是壓縮包的路徑。只是文件名時,則保存至當前目錄,不然保存至指定路徑,
如 data\_bak =>保存至當前路徑  
      如:/tmp/data\_bak =>保存至/tmp/
  • format: 壓縮包種類,「zip」, 「tar」, 「bztar」,「gztar」
  • root_dir: 要壓縮的文件夾路徑(默認當前目錄)
  • owner: 用戶,默認當前用戶
  • group: 組,默認當前組
  • logger: 用於記錄日誌,一般是logging.Logger對象
#將 /data 下的文件打包放置當前程序目錄
import shutil
ret = shutil.make_archive("data_bak", 'gztar', root_dir='/data')
#將 /data下的文件打包放置 /tmp/目錄
import shutil
ret = shutil.make_archive("/tmp/data_bak", 'gztar', root_dir='/data')

shutil 對壓縮包的處理是調用 ZipFile 和 TarFile 兩個模塊來進行的,詳細:

zipfile壓縮&解壓縮

import zipfile
# 壓縮
z = zipfile.ZipFile('laxi.zip', 'w')
z.write('a.log')
z.write('data.data')
z.close()
# 解壓
z = zipfile.ZipFile('laxi.zip', 'r')
z.extractall(path='.')
z.close()

tarfile壓縮&解壓縮

import tarfile
# 壓縮
t=tarfile.open('/tmp/egon.tar','w')
t.add('/test1/a.py',arcname='a.bak')
t.add('/test1/b.py',arcname='b.bak')
t.close()
# 解壓
t=tarfile.open('/tmp/egon.tar','r')
t.extractall('/egon')
t.close()
相關文章
相關標籤/搜索