Android Question Where should data be stored?

RMarra

Member
Licensed User
Longtime User
I've been writing my data to File.DirInternal (mainly because that's the only option that doesn't give me an error about permissions). I want to show the files in the FilePicker, but I get an error that says
Application needs you permission to access SD card
I've been reading and writing to DirInternal this whole time under the assumption that it was NOT the SD card. Am I doing something wrong, or is FilePicker (1.01) not the right choice?
 

Semen Matusovskiy

Well-Known Member
Licensed User
If you want to restrict a choice by File.DirInternal, you don't need to use FilePicker, ContentChooser etc.
Retrieve a list of files using File.ListFiles and make a form from ListView and Button.
 
Upvote 0

RMarra

Member
Licensed User
Longtime User
I'm not understanding why the FilePicker is having permission issues when I'm reading and writing to that directory just fine.
 
Upvote 0
Top