python複製檔案到資料夾中

2022-03-14 13:17:12 字數 669 閱讀 1530

目標:將一張複製到乙個資料夾下 所有子檔案中。

import

shutil

importos#

第一部分,準備工作,拼接出要存放的資料夾的路徑

file = '

e:/測試/1.jpg'#

current_foder是『模擬』資料夾下所有子檔名組成的乙個列表

current_folder = os.listdir('

e:/測試/模擬

')#current_foder是『模擬』資料夾下所有子檔名組成的乙個列表

#第二部分,將名稱為file的檔案複製到名為file_dir的資料夾中

for x in

current_folder:

#拼接出要存放的資料夾的路徑

file_dir = '

e:/測試/模擬

'+'/

'+x

#將指定的檔案file複製到file_dir的資料夾裡面

shutil.copy(file,file_dir)

總結:

檔案複製內建函式 shutil.copy

獲取資料夾下所有子檔名的函式,os.listdir

python中的路徑是/或者是\\而不是\

Python 複製檔案到指定資料夾

通過os.listdir 獲取指定資料夾下的檔案或資料夾的名字的列表 再迴圈列印出所有檔案或資料夾的名字,將檔名賦值於aa,字尾名賦值於bb 即aa,bb split 匹配你想要複製的檔案 if actor hud in aa.lower 指定的資料夾 newname u d program fil...

c 複製檔案到目標資料夾

region 將整個資料夾複製到目標資料夾中。將整個資料夾複製到目標資料夾中。源資料夾路徑 目標資料夾路徑 private void copydirectory string srcdir,string desdir string filenames directory.getfilesysteme...

檔案 資料夾複製

通道對通道複製效率高 param f1 原始檔 param f2 目的檔案 return throws exception public static long forchannel file f1,file f2 throws exception if inc.size inc.position ...