Dummy = File.DirInternal 'This is needed because it gives the Android OS permission to read and write to memory
'but it is not used by your code, it's just to set permission in the OS
File.MakeDir("/mnt/media","mydirname/appname")
'Then access it
filename = "/" & "myfile.dat"
ans = File.ReadList("/mnt/media", "mydirname/appname" & filename)
'Any app can access this path
'You can clean this up by doing it like this
mypath = "/mnt/media/mydirname/appname/"
filename = "myfile.dat"
ans = File.ReadList("", mypath & filename)