python 把一个文件夹的文件移动到另外一个文件夹

import os,shutil
import time
src_path='F:/oanda/'
target_path='D:/oanda/'
while True:
    time.sleep(3)
    file_list=os.listdir(src_path)
    if len(file_list)>0:
        for file in file_list:
            shutil.move(src_path+file,target_path+file)   

 

    原文作者:云金杞
    原文地址: https://blog.csdn.net/qq_26948675/article/details/89487879
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞