f.close() #通常对文件读取完后,进行关闭文件 except IOError: print(“path_file 不存在”)
try:f=open()f.close()except IOError:print"File is not accessible." 使用try语句进行判断,处理所有异常非常简单和优雅的。而且相比其他不需要引入其他外部模块。 3. 使用pathlib模块 pathlib模块在Python3版本中是内建模块,但是在Python2中是需要单独安装三方模块。 使用pathlib需要先使用文件路径来创建path对象。...
)打开,根据反馈的是否有ERROR来进⾏判断⽂件是否存在 try:f = open(path_file) # 打开path路径下的file⽂件 f.close() #通常对⽂件读取完后,进⾏关闭⽂件 except IOError:print(“path_file 不存在”)