摘要: #coding utf-8 import os def main(): fileDir = 'F:'+os.sep+'aaa' for root,dirs,files in os.walk(fileDir): print (root) print (dirs) print (files) os.system('pause'... 阅读全文
posted @ 2016-07-14 17:10 yuuwee 阅读(151) 评论(0) 推荐(0) 编辑