代码: import os, re, time name = 'linuxday01' flags = True# 文件夹bi_test中的文件列表 print os.listdir('E:\\bi_test') while flags: for f in os.listdir('E:\\bi_test'): # 寻找以name开头,以.download结尾的文件 if re.search(name + '\.(.*)\.download$', f): print f print '没有完成'…