📅  最后修改于: 2022-03-11 14:46:39.442000             🧑  作者: Mango
def FileCheck(fn):
try:
open(fn, "r")
return 1
except IOError:
print "Error: File does not appear to exist."
return 0
result = FileCheck("testfile")
print result