我正在尝试从符合特定条件的文件夹中读取所有文件。一旦引发异常,我的程序就会崩溃。即使有异常,我也试图继续,但它仍然停止执行。
这是我几秒钟后得到的。
error <type 'exceptions.IOError'>
这是我的代码
import os
path = 'Y:\\Files\\'
listing = os.listdir(path)
try:
for infile in listing:
if infile.startswith("ABC"):
fo = open(infile,"r")
for line in fo:
if line.startswith("REVIEW"):
print infile
fo.close()
except:
print "error "+str(IOError)
pass