OSError: [Errno 22] Invalid argument: 'D:\\yolov5-master\\own_datas\\labels\txt00000.txt'
时间: 2023-11-26 18:48:57 浏览: 112
python爬虫报错:OSError: [Errno 22] Invalid argument
这个错误通常是由于文件路径中的反斜杠未转义而导致的。在Windows系统中,文件路径使用反斜杠(\)作为分隔符,但是在Python中,反斜杠是用于转义字符的。因此,如果您想在Python中使用反斜杠作为路径分隔符,您需要将其转义为双反斜杠(\\)或使用正斜杠(/)作为路径分隔符。请尝试以下代码:
```python
with open('D:\\yolov5-master\\own_datas\\labels\\txt00000.txt', 'r') as f:
json_list = f.readlines()
```
如果您仍然遇到相同的错误,请确保文件路径正确,并检查文件是否存在。
阅读全文