2014-06-17 84 views

回答

1

這裏是一個與操作系統無關的版本:

try: 
    file = open("thefile.txt", "r+") 
except IOError: 
    print "File is open!" 

編輯補充你的問題是check if a file is open in Python

0

重複如果你已經有一個指針文件:

if f.closed: 
    print('file is closed')