我正在尝试使用Python中的线程处理一些文件。一些线程工作正常,没有错误,但有些通过以下异常
Exception in thread Thread-27484:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 551, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 504, in run
self.__target(*self.__args, **self.__kwargs)
File "script.py", line 62, in ProcessFile
if f is not None:
UnboundLocalError: local variable 'f' referenced before assignment
运行程序时
这是Python函数
def ProcessFile(fieldType,filePath,data):
try:
if fieldType == 'email':
fname = 'email.txt'
else:
fname = 'address.txt'
f1 = open(fname,'wb')
for r in data[1:]:
r[1] = randomData(fieldType)
f1.write(r[1])
f1.close()
f = open(filePath,'wb')
writer = csv.writer(f)
writer.writerows(data)
f.close()
try:
shutil.move(filePath,processedFileDirectory)
except:
if not os.path.exists(fileAlreadyExistDirectory):
os.makedirs(fileAlreadyExistDirectory)
shutil.move(filePath,fileAlreadyExistDirectory)
finally:
if f is not None:
f.close()
以下是我通过线程调用上述函数的方法
t = Thread(target=ProcessFile,args=(fieldType,filePath,data))
t.start()
答案 0 :(得分:2)
显然,在你实际向f写入任何内容之前,你的'try'子句中有一个异常。所以f不仅没有价值,甚至不存在。
最简单的解决方法是添加
f = None
在try子句之上。但可能,你不会期待早期的异常,所以也许你应该检查你发送这个函数的数据