Python中os模板移动文件夹
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)