在Python 2中搜索等效的FileNotFoundError

Wal*_*ril 40 python exception-handling file python-2.7 python-3.x

我创建了一个名为Options的类.它工作正常,但不是没有Python 2.我希望它可以在Python 2和3上工作.问题是:Python 2中不存在FileNotFoundError但是如果我使用IOError它在Python 3中不起作用

版本3.3中已更改:EnvironmentError,IOError,WindowsError,VMSError,socket.error,select.error和mmap.error已合并到OSError中.

我该怎么办?(请不要讨论我对便携性的选择,我有理由.)

这是代码:

#!/usr/bin/python
#-*-coding:utf-8*

#option_controller.py

#Walle Cyril
#25/01/2014

import json
import os

class Options():
    """Options is a class designed to read, add and change informations in a JSON file with a dictionnary in it.

    The entire object works even if the file is missing since it re-creates it.
    If present it must respect the JSON format: e.g. keys must be strings and so on.
    If something corrupted the file, just destroy the file or call read_file method to remake it."""

    def __init__(self,directory_name="Cache",file_name="options.json",imported_default_values=None):
        #json file
        self.option_file_path=os.path.join(directory_name,file_name)
        self.directory_name=directory_name
        self.file_name=file_name
        #self.parameters_json_file={'sort_keys':True, 'indent':4, 'separators':(',',':')}
        #the default data
        if imported_default_values is None:
            DEFAULT_INDENT = 2
            self.default_values={\
                "translate_html_level": 1,\
                "indent_size":DEFAULT_INDENT,\
                "document_title":"Titre"}
        else:
            self.default_values=imported_default_values


    def read_file(self,read_this_key_only=False):
        """returns the value for the given key or a dictionary if the key is not given.

        returns None if it s impossible"""
        try:
            text_in_file=open(self.option_file_path,'r').read()
        except FileNotFoundError:#not 2.X compatible
            text_in_file=""#if the file is not there we re-make one with default values
        if text_in_file=="":#same if the file is empty
            self.__insert_all_default_values()
            text_in_file=open(self.option_file_path,'r').read()

        try:
            option_dict=json.loads(text_in_file)
        except ValueError:
            #if the json file is broken we re-make one with default values
            self.__insert_all_default_values()
            text_in_file=open(self.option_file_path,'r').read()
            option_dict=json.loads(text_in_file)

        if read_this_key_only:
            if read_this_key_only in option_dict:
                return option_dict[read_this_key_only]#
            else:
                #if the value is not there it should be written for the next time
                if read_this_key_only in self.default_values:
                    self.add_option_to_file(read_this_key_only,self.default_values[read_this_key_only])
                    return self.default_values[read_this_key_only]
                else:
                    #impossible because there is not default value so the value isn t meant to be here
                    return None
        else:
            return option_dict

    def add_option_to_file(self,key,value):#or update
        """Adds or updates an option(key and value) to the json file if the option exists in the default_values of the object."""

        option_dict=self.read_file()
        if key in self.default_values:
            option_dict[key]=value
        open(self.option_file_path,'w').write(\
            json.dumps(option_dict,sort_keys=True, indent=4, separators=(',',':')))


    def __insert_all_default_values(self):
        """Recreate json file with default values.

    called if the document is empty or non-existing or corrupted."""
        try:
            open(self.option_file_path,'w').write(\
            json.dumps(self.default_values,sort_keys=True, indent=4, separators=(',',':')))
        except FileNotFoundError:
            os.mkdir(self.directory_name)#Create the directory
            if os.path.isdir(self.directory_name):#succes
                self.__insert_all_default_values()
            else:
                print("Impossible to write in %s and file %s not found" % (os.getcwd(),self.option_file_path))


#demo
if __name__ == '__main__':

    option_file_object=Options()
    print(option_file_object.__doc__)
    print(option_file_object.read_file())
    option_file_object.add_option_to_file("","test")#this should have no effect

    option_file_object.add_option_to_file("translate_html_level","0")#this should have an effect
    print("value of translate_html_level:",option_file_object.read_file("translate_html_level"))
    print(option_file_object.read_file())
Run Code Online (Sandbox Code Playgroud)

kin*_*all 46

如果FileNotFoundError不存在,请定义它:

try:
    FileNotFoundError
except NameError:
    FileNotFoundError = IOError
Run Code Online (Sandbox Code Playgroud)

现在你可以捕获FileNotFoundErrorPython 2了,因为它确实存在IOError.

但要小心,IOError还有其他含义.特别是,任何消息都应该说"文件无法读取"而不是"找不到文件".

  • 不错的解决方案。由于我使用了 `six`,所以我做了:`if Six.PY2: FileNotFoundError = IOError` (2认同)
  • Python 2.7.17 中的 `os.remove("fake_file")` 引发 `WindowsError`,它继承自 `OSError`,而不是 `IOError`。 (2认同)

daw*_*awg 22

您可以使用基类异常EnvironmentError并使用'errno'属性来确定引发了哪个异常:

from __future__ import print_function

import os
import errno

try:
    open('no file of this name')   # generate 'file not found error'
except EnvironmentError as e:      # OSError or IOError...
    print(os.strerror(e.errno))  
Run Code Online (Sandbox Code Playgroud)

或者以同样的方式使用IOError:

try:
    open('/Users/test/Documents/test')   # will be a permission error
except IOError as e:
    print(os.strerror(e.errno))  
Run Code Online (Sandbox Code Playgroud)

这适用于Python 2或Python 3.

要小心,不要直接比较反对数值,因为它们可以是不同的不同的平台.相反,在Python的标准库errno模块中使用命名常量,该模块将使用运行时平台的正确值.


lea*_*eal 7

除了 a 的 Python 2 / 3 兼容方式FileNotFoundError是这样的:

import errno

try:
    with open('some_file_that_does_not_exist', 'r'):
        pass
except EnvironmentError as e:
    if e.errno != errno.ENOENT:
        raise
Run Code Online (Sandbox Code Playgroud)

其他答案很接近,但如果错误号不匹配,请不要重新提出。

IOError在大多数情况下使用是很好的,但出于某种原因os.listdir(),朋友们OSError在 Python 2 上改用了。因为IOError继承自OSError它,所以总是捕获OSError并检查错误号就可以了。

编辑:上一句仅适用于 Python 3。为了交叉兼容,改为捕获EnvironmentError并检查错误号。

  • `IOError` 继承自 `OSError` 吗?它不适用于 macOS 上的 Python 2.7.16。相反,它们各自继承自“EnvironmentError”。 (2认同)
  • @Jason R. Coombs 我刚刚在 Python 2.7.10 上再次测试了这一点,看起来你是正确的。我已经更新了答案。 (2认同)