摘要: import os def getAllFile(*names): if len(names) == 0: return "" else: allList = [] for name in names: fileAndDirString = os.popen("ls -l "+name).read() ... 阅读全文
posted @ 2019-03-02 01:28 taomin 阅读(1955) 评论(0) 推荐(0) 编辑