I am in the process of migrating my scripts from python SL4A to QPython (can't get SL4A to work on android lollipop).
I can't save a file to the disk
So I am using:
with open("foo.txt" ,"a") as f:
f.write(theInfo)
And I get
IOError: [Errno 30] Read-only file system: 'foo.txt'
I know what the error means, I just don't know where to save the file...
Thanks for the help,
marbs