gpt4 book ai didi

python - IO错误 : [Errno 2] No such file or directory (when it really exist) Python

转载 作者:太空宇宙 更新时间:2023-11-03 12:55:01 27 4
gpt4 key购买 nike

我正在通过 python 中的 uart 传输文件文件夹。下面你看到了简单的功能,但是有一个问题,因为我得到了标题中的错误:IOError: [Errno 2] No such file or directory: '1.jpg' where 1.jpg is one of测试文件夹中的文件。所以这很奇怪,因为程序知道它不存在的文件名?!我做错了什么?

def send2():
path = '/home/pi/Downloads/test/'
arr = os.listdir(path)
for x in arr:
with open(x, 'rb') as fh:
while True:
# send in 1024byte parts
chunk = fh.read(1024)
if not chunk: break
ser.write(chunk)

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com