Fork me on GitHub
摘要: import os import os.path from shutil import copy def copyfile(src, dst): count = 1 for filename in os.listdir(src): file = os.path.join(src,filename) 阅读全文
posted @ 2019-02-19 19:48 stardsd 阅读(4011) 评论(0) 推荐(0) 编辑