cannot write to file after close()

Rainer Hubovsky hubovsky at atlan.hubovsky.net
Sun Sep 25 16:36:15 EDT 2005


Hello Python-Gurus,

==========================
f = open(LOGFILE,'w')
f.write(time + '\n')
f.close

command = 'ping -n 20' + target + '>>' + LOGFILE
system(command)
==========================

produces an error saying that a file cannot be accessed because it is used
by another process. I asume it is f which is used but don't understand why.

Any ideas?

Thanks a lot!

Cheers,
  Rainer




More information about the Python-list mailing list