我在 python 中注意到了这种奇怪的行为——我试图记录一个进程的输出,然后读取这个输出并对其进行一些处理。即使在程序运行后打开文件时文件包含所有文本,我也无法读取任何内容。
它很简单
f=open("blah.txt",'w')
#I log the output of a program with subprocess
Cmdline="program.exe"
Dump= subprocess.Popen(CmdLine,stdout=f,stderr=subprocess.STDOUT)
#Waiting for it to finish
while(Dump.poll() is not None): #returns None while subprocess is running
print "waiting on process to finish \n"
f.flush() #I flush everything to make sure it was written
sys.stdout.flush()
f.close()
#now i need to read from this file
f= open("blah.txt", 'r')
line=f.readline()
while line:
print line
line=f.readline()
f.close()
我什么也没读,但是当我在运行程序后打开文件 blah.txt 时,一切都在那里。关于我可能做错了什么的任何提示?我根本没有从“等待过程完成”中得到任何打印,但该过程需要大约一秒钟的时间才能运行。