摘要: 1 import os 2 def check_file(start_dir, target): 3 os.chdir(start_dir) 4 for each_file in os.listdir(os.curdir): 5 if each_file == target: 6 print(os.path.join(os.g... 阅读全文
posted @ 2017-02-12 20:00 道高一尺 阅读(327) 评论(0) 推荐(0)