1. 程式人生 > >import shutil 進行復制和移動檔案或者資料夾

import shutil 進行復制和移動檔案或者資料夾


#複製檔案:
shutil.copyfile("oldfile","newfile") #oldfile和newfile都只能是檔案
shutil.copy("oldfile","newfile") #oldfile只能是資料夾,newfile可以是檔案,也可以是目標目錄
#複製資料夾:
shutil.copytree("olddir","newdir") #olddir和newdir都只能是目錄,且newdir必須不存在
#重新命名檔案(目錄)
os.rename("oldname","newname") #檔案或目錄都是使用這條命
移動檔案(目錄)
shutil.move("oldpos","newpos")
shutil.move(".pdf", "D:/xxx/")