Python中os模板移动文件夹

时间:2024-10-23 08:09:00
import os import shutil # 判断文件是否存在 q = os.path.exists("D:\\file0512") #需要存储到的文件夹位置 v= "D:\\file0512" #需要转移的文件夹 w = "C:\\Users\\asus\Desktop\桌面" # 打开文件夹 # w = ("C:\Users\asus\Desktop\桌面") def nm(x): the = os.listdir(x) for i in the: #当前文件夹内的文件 the_loc = x + "\\" + i new_loc = v + "\\" + i shutil.move(the_loc,new_loc) nm(w)