python之小白的多線程小練習-利用多線程拷貝文件夾中的全部文件

import os,sys from multiprocessing import Pool from multiprocessing import Manager def copy_file(name,path,new_path,q): fr=open(path+"/"+name) fw=open(new_path+'/'+name,"w") content=fr.
相關文章
相關標籤/搜索