fd = open('example.csv', 'a')
while True:
fd.write('...'+'\n')
fd.flush()
...
现在,如果用户在 READONLY 模式下使用 Excel 打开 example.csv 一段时间后,写入有时会抛出 IOError (errno 13)。行为不一致且难以重现
有任何想法吗?
操作系统:Windows 7
蟒蛇:2.7.5
fd = open('example.csv', 'a')
while True:
fd.write('...'+'\n')
fd.flush()
...
现在,如果用户在 READONLY 模式下使用 Excel 打开 example.csv 一段时间后,写入有时会抛出 IOError (errno 13)。行为不一致且难以重现
有任何想法吗?
操作系统:Windows 7
蟒蛇:2.7.5