FileNotFoundError: No such file: 'E:\SJJ\val\images000000000000.jpg'
时间: 2023-11-21 17:05:29 浏览: 92
冗余电源配置-iso26262,gbt 34590 《道路车辆 功能安全》宣贯会_汽车安全
这个错误提示表明程序无法找到指定的文件。可能是因为文件路径不正确或文件不存在。请检查文件路径是否正确,确保文件存在于指定路径中。
以下是一个演示如何读取文件的例子:
```python
try:
with open('E:\SJJ\val\images000000000000.jpg', 'r') as f:
# 在这里对文件进行操作
pass
except FileNotFoundError:
print("文件不存在")
```
阅读全文