特定の条件に一致するフォルダーからすべてのファイルを読み取ろうとしています。例外が発生すると、プログラムがクラッシュします。例外があっても続行しようとしていますが、それでも実行が停止します。
これは、数秒後に得られるものです。
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