Page 1 of 1

Store data in different location CsEntry

Posted: September 2nd, 2023, 1:24 am
by chandi
I am trying to save data file in different location in my android internal storage, I set the location via
intent.putExtra("InputData", NewdataFile); (As mention in the relevant Example)
but this gives error and not open the App, and it says it has no permission to create new file, how can I add permission to the location, or resolve this issue.
(I am testing on Android 11)

Re: Store data in different location CsEntry

Posted: September 5th, 2023, 8:59 am
by Gregory Martin
What directory are you trying to save your files into? Because of Android data security restrictions, the CSEntry application is limited in the locations to which it can write. One directory that every application can access is the Downloads directory:
pathname(Downloads)
If are you trying to share data between applications, you might consider putting it in that directory.

Re: Store data in different location CsEntry

Posted: September 6th, 2023, 2:15 am
by chandi
Thanks Greg, I'll try :)