Python的shutil模組

yaohong發表於2018-03-27

import shutil

1.shutil.copy(source,destination)

   將source的檔案拷貝到destination,兩個引數都是字串格式。

2.shutil.copyfilr()

 將原始檔內容複製給目標檔案,如果目標檔案不存在則產生錯誤。

3.shutil.copytree(source,destination)

 複製整個資料夾,從source複製到destion中,destion是不存在的檔案,將source下的檔案全部拷貝到destion中。

4.shutil,copy2()

 和shutil.copy2()類似,但copy2拷貝過來的後設資料會包含訪問可修改時間。

 

 


相關文章