I need Access the Download Folder only as Read, not as write, with
In Manifest i have
AddManifestText(<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="19" />)
How can i solve this, i have readed all i could find, but nothing gives me a help[/CODE]
B4X:
If (File.Exists(File.DirRootExternal , "/Download/text.txt")) Then '*** Works, file exist, but can't open with permissinon problems
'*** correct Path = File /storage/emulated/0
'** get - java.io.FileNotFoundException: /storage/emulated/0/Download/conf.dpn (Permission denied)
If (File.Exists(rp.GetSafeDirDefaultExternal(""), "/Download/Text.txt")) Then '*** won't work, is other Path
'*** wrong path = /storage/emulated/0/Android/data/PST.Printer/files
In Manifest i have
AddManifestText(<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="19" />)
How can i solve this, i have readed all i could find, but nothing gives me a help[/CODE]