我正在将我的脚本从 python SL4A 迁移到 QPython(无法让 SL4A 在 android lollipop 上工作)。
我无法将文件保存到磁盘
所以我正在使用:
with open("foo.txt" ,"a") as f:
f.write(theInfo)
我得到
IOError: [Errno 30] Read-only file system: 'foo.txt'
我知道错误意味着什么,我只是不知道在哪里保存文件......
谢谢你的帮助,
marbs