摘要: 1 # -*- coding: utf-8 -*- 2 import os 3 import shutil 4 5 6 def listdir(path, list_name): # 传入存储的list 7 for file in os.listdir(path): 8 file_path = os 阅读全文
posted @ 2022-06-23 16:44 dafengchui 阅读(171) 评论(1) 推荐(0)