📅  最后修改于: 2023-12-03 15:00:45.216000             🧑  作者: Mango
在Python中,FileNotFoundError(文件未找到错误)是常见的异常之一。当Python无法找到指定的文件或目录时,就会抛出FileNotFoundError。这个错误通常在以下情况下发生:
以下是几种可能引起 FileNotFoundError 的情况:
当试图打开不存在的文件时,会抛出 FileNotFoundError 异常。例如:
with open('nonexistent_file.txt', 'r') as file:
data = file.read()
这段代码会抛出以下异常:
FileNotFoundError: [Errno 2] No such file or directory: 'nonexistent_file.txt'
当试图删除已经打开的文件时,会抛出 OSError 异常。如果文件已被删除,试图访问该文件的任何操作都会抛出 FileNotFoundError 异常。例如:
file = open('test.txt', 'w')
os.remove('test.txt')
data = file.read()
这段代码会抛出以下异常:
FileNotFoundError: [Errno 2] No such file or directory: 'test.txt'
当指定的路径名不正确时,会抛出 FileNotFoundError 异常。例如:
with open('/nonexistent_directory/nonexistent_file.txt', 'r') as file:
data = file.read()
这段代码会抛出以下异常:
FileNotFoundError: [Errno 2] No such file or directory: '/nonexistent_directory/nonexistent_file.txt'
要避免 FileNotFoundError 异常,可以使用以下方法:
以下是使用try-except语句捕获FileNotFoundError异常的示例代码:
try:
with open('nonexistent_file.txt', 'r') as file:
data = file.read()
except FileNotFoundError:
print('File not found')
希望这篇文章能够帮助你了解FileNotFoundError异常的来源和如何避免它。