主要作用與拷貝檔案用的。
1.shutil.copyfileobj(檔案1,檔案2):將檔案1的資料覆蓋copy給檔案2。
import shutil
f1 = open("1.txt",encoding="utf-8")
f2 = open("2.txt","w",encoding="utf-8")
shutil.copyfileobj(f1,f2)
2.shutil.copyfile(檔案1,檔案2):不用開啟檔案,直接用檔名進行覆蓋copy。
import shutil
shutil.copyfile("1.txt","3.txt")
3.shutil.copymode(檔案1,檔案2):之拷貝許可權,內容組,使用者,均不變。
def copymode(src,dst):
"""copy mode bits from src to dst"""
if hasattr(os,'chmod'):
st = os.stat(stc)
mode = stat.s_imode(st.st_mode)
os.chmod(dst,mode)
4.shutil.copystat(檔案1,檔案):只拷貝了許可權。
def copystat(src,dst):
"""將所有的狀態資訊(模式位、時間、時間、標誌)從src複製到dst"""
st = os.stat(src)
mode = stat.s_imode(st.st_mode)
if hasattr(os, 'utime'):
os.utime(dst,(st.st_atime,st.st_mtime))
if hasattr(os, 'chmod')
os.chmod(dst,mode)
if hasattr(os, 'chflags') and hasattr(st,'st_flags'):
try:
os.chflags(dst, st.st_flags)
except oserror,why:
for err in 'eopnotsupp', 'enotsup':
if hasattr(errno,err) and why.errno == getattr(errno, err):
break
else:
raise
5.shutil.copy(檔案1,檔案2):拷貝檔案和許可權都進行copy。
def copy(src,dst):
"""copy data and mode bits ("cp src dst")
the destination may be a directory.
"""if os.path.isdir(dst):
dst = os.path.join(dst,os.path.basename(src))
copyfile(src,dst)
copymode(src,dst)
6.shutil.copy2(檔案1,檔案2):拷貝了檔案和狀態資訊。
7.shutil.copytree(源目錄,目標目錄):可以遞迴copy多個目錄到指定目錄下。
遞迴的去拷貝檔案
例如:copytree(source, destination, ignore=ignore_patterns('*.pyc', 'tmp*'))
8.shutil.rmtree(目標目錄):可以遞迴刪除目錄下的目錄及檔案。
9.shutil.move(原始檔,指定路徑):遞迴移動乙個檔案。
10.shutil.make_archive():可以zsswbjnmnq壓縮,打包檔案。
import shutil
shutil.make_archive("shutil_archive_test","zip","d:\新建資料夾 (2)")
11.shutil.make_archive(base_name, format,...)
建立壓縮包並返回檔案路徑,例如:zip、tar
#將 /users/wupeiqi/downloads/test 下的檔案打包放置當前程式目錄
import shutil
ret = shutil.make_archive("wwwwwwwwww", 'gztar', root_dir程式設計客棧='/users/wupeiqi/downloads/test')
#將 /users/wupeiqi/downloads/test 下的檔案打包放置 /users/wupeiqi/目錄
import shutil
ret = shutil.mak程式設計客棧e_archiwww.cppcns.comve("/users/wupeiqi/wwwwwwwwww", 'gztar', root_dir='/users/wupeiqi/downloads/test')
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()
z.close()
tarfile 壓縮解壓
import tarfile
# 壓縮
tar = tarfile.open('your.tar','w')
tar.add('/users/wupeiqi/pycharmprojects/bbs2.zip', arcname='bbs2.zip')
tar.add('/users/wupeiqi/pycharmprojects/cmdb.zip', arcname='cmdb.zip')
tar.close()
# 解壓
tar = tarfile.open('your.tar','r')
tar.extractall() # 可設定解壓位址
tar.close()
第二種方法:
import zipfile
z = zipfile.zipfile("day5.zip","w")
z.write("a")
解壓:z.extractall("a")
Python shutil模組用法
1.shutil.copyfile oldfile,newfile 複製檔案1到檔案2中,如txt檔案。注意 若檔案2不存在,則直接建立檔案2,且檔案2中內容和檔案1內容相同。若檔案2存在,則檔案2中原有內容會被清除掉。語法 shutil.copyfile oldfile,newfile impor...
shutil模組 python shutil模組
shutil.copyfile src,dst 從源src複製到dst中去。當然前提是目標位址是具備可寫許可權。丟擲的異常資訊為ioexception.如果當前的dst已存在的話就會被覆蓋掉 shutil.move src,dst 移動檔案或重新命名 shutil.copymode src,dst ...
詳解Python shutil模組
import shutil 高階的檔案,資料夾,壓縮包的處理模組,也主要用於檔案的拷貝 shutil.copyfileobj fsrc,fdst length 將檔案的內容拷貝到另乙個檔案 可以指定length長度進行拷貝 import shutil shutil.copyfilewww.cppcn...