Python shutil用法 複製檔案與目錄操作
【常用操作】
import shutil
#複製檔案
shutil.copyfile('listfile.py', 'd:/test.py')
#複製目錄
shutil.copytree('d:/temp', 'c:/temp/')
#其餘可以參考shutil下的函式
import shutil
import os
def my_copy(path1,path2,type='file'):
if type == 'file':
shutil.copyfile(path1,path2)
print('檔案複製成功')
elif type == 'dir1':
shutil.copytree(path1,path2)
print('目錄複製成功')
return
# 複製test2裡面的test檔案到day19下面
my_copy('E:\Python學習\day18\\test\\test2\\test','E:\Python學習\day19\\test')
# 複製目錄test及其test2及test到檔案day19下面,命名:ceshi
my_copy('E:\Python學習\day18\\test','E:\Python學習\day19\ceshi',type='dir1')
【操作總結】
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):數字貨幣http://www.gendan5.com/digitalcurrency/btc.html
複製了檔案和狀態資訊。
7.shutil.copytree(源目錄,目標目錄):可以遞迴copy多個目錄到指定目錄下。
shutil.ignore_patterns(*patterns)
shutil.copytree(src, dst, symlinks=False, ignore=None)
遞迴的去複製檔案
例如:copytree(source, destination, ignore=ignore_patterns(’.pyc’, 'tmp’))
8.shutil.rmtree(目標目錄):可以遞迴刪除目錄下的目錄及檔案。
9.shutil.move(原始檔,指定路徑):遞迴移動一個檔案。
10.shutil.make_archive():可以壓縮,打包檔案。
import shutil
shutil.make_archive("shutil_archive_test","zip","D:\新建資料夾 (2)")
11.shutil.make_archive(base_name, format,…)
建立壓縮包並返回檔案路徑,例如:zip、tar
base_name: 壓縮包的檔名,也可以是壓縮包的路徑。只是檔名時,則儲存至當前目錄,否則儲存至指定路徑,
如:www =>儲存至當前路徑
如:/Users/wupeiqi/www =>儲存至/Users/wupeiqi/
format: 壓縮包種類,“zip”, “tar”, “bztar”,“gztar”
root_dir: 要壓縮的資料夾路徑(預設當前目錄)
owner: 使用者,預設當前使用者
group: 組,預設當前組
logger: 用於記錄日誌,通常是logging.Logger物件
#將 /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.make_archive("/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()
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”)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69946337/viewspace-2671435/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [Python] shutil 模組(檔案操作)Python
- php複製目錄及檔案PHP
- Python 檔案、目錄操作Python
- 如何批量複製多個檔案到多個目錄中(批量複製檔案,多對多檔案高效操作的方法)
- 複製目錄下的全部檔案到另一個目錄
- windows 把指定目錄的檔案複製到當前目錄Windows
- Windows 複製 xcopy 檔案到另外一個 目錄Windows
- cp 快捷命令:複製檔案到多個目錄
- python基本操作-檔案、目錄及路徑Python
- Linux 只複製目錄,不復制目錄下的資料檔案Linux
- LINUX學習(一)檔案與目錄操作Linux
- python複製資料夾到一個目錄,或者按目錄層級建立複製Python
- 18、檔案與目錄
- linux命令之----cp命令用於複製檔案或目錄Linux
- scp命令 用於Linux之間複製檔案和目錄Linux
- python檔案操作-讀寫刪除複製總結Python
- Linux 檔案與目錄Linux
- python常用標準庫(os系統模組、shutil檔案操作模組)Python
- 教你Python使用shutil操作檔案、subprocess執行子程式的方法Python
- php檔案操作之提取檔案/目錄的名稱PHP
- Linux 檔案與目錄管理Linux
- 無緩衝檔案IO和目錄操作
- 刪除目錄及目錄下所有檔案與子目錄 (轉)
- Python入門(二十六):檔案模組(os模組與shutil模組)Python
- C語言檔案與目錄(五)檔案鎖C語言
- Linux中如何複製檔案或目錄?常用命令是什麼?Linux
- 第二章 檔案和目錄操作命令
- Linux 目錄結構及檔案基本操作Linux
- [原] PHP檔案及目錄操作總結(一)PHP
- linux檔案與目錄管理命令Linux
- Linux檔案與目錄管理(2)Linux
- C語言檔案與目錄(一)C語言
- C語言檔案與目錄(二)C語言
- C語言檔案與目錄(三)C語言
- Linux 檔案與目錄管理(轉)Linux
- 第九天- 檔案操作 r w a 檔案複製/修改
- Python 刪除目錄中特定檔案Python
- 沒有目錄建目錄,沒有檔案建檔案