filePath='C:\\Users\\Public\\Pictures\\wl.jpg' image=open(filePath,'rb').read()如何识别多个文件路径
时间: 2023-09-06 19:14:13 浏览: 192
该程序实现了对读取多个文件的文件路径的处理
可以将文件路径存储在一个列表中,然后使用循环来逐一读取并处理每个文件路径。例如:
```
filePaths = ['C:\\Users\\Public\\Pictures\\wl.jpg', 'C:\\Users\\Public\\Documents\\resume.docx', 'C:\\Users\\Public\\Videos\\movie.mp4']
for filePath in filePaths:
image = open(filePath, 'rb').read()
# 进行处理
```
这样就可以依次读取每个文件路径并处理它们。
阅读全文