I've seen various posts on this, and I've tried different things to no avail.
Here is where the directory was created, using DirRootExternal: "/storage/emulated/0/Scooper"
I'm running this on a Nexus 7, which doesn't have external storage.
So then I forced it to use DirInternal and this is where it put the directory: "/data/data/b4a.example/files/Scooper"
Needless to say, I can't find either of the directories on my device.
Any clues?
-Sterling
B4X:
If File.ExternalWritable Then
File.MakeDir(File.DirRootExternal, "Scooper")
Dir = File.DirRootExternal & "/PooperScooper"
Else
File.MakeDir(File.DirRootExternal, "Scooper")
Dir = File.DirRootExternal & "/Scooper"
Log("dir: " & Dir)
End If
Here is where the directory was created, using DirRootExternal: "/storage/emulated/0/Scooper"
I'm running this on a Nexus 7, which doesn't have external storage.
So then I forced it to use DirInternal and this is where it put the directory: "/data/data/b4a.example/files/Scooper"
Needless to say, I can't find either of the directories on my device.
Any clues?
-Sterling