I started using B4XPage and ran into a problem creating an application folder on my phone.
There is permission in the manifest.
The folder was not created.
B4X:
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.LoadLayout("MainPage")
rp.CheckAndRequest(rp.PERMISSION_WRITE_EXTERNAL_STORAGE)
Wait For B4XPage_PermissionResult(permission As String, Result As Boolean)
Log(Result)
File.MakeDir(File.DirRootExternal, "test")
End Sub
The folder was not created.