我正在尝试在 Watson Studio(云)中部署一个正常工作的 python 3.6 笔记本。但是我正在努力访问文件/资产。将 .log 文件上传到我的资产后,我想使用它打开并处理它
with open(project.get_file('messages.log'), 'r') as file:
错误信息返回
TypeError: expected str, bytes, or os.PathLike object, not _io.BytesIO
除了告诉我如何打开/读取日志文件之外,我还希望简要解释一下为什么 project.get_file 返回一个 BytesIo 对象。