iOS Question open folder myapp

AlfaizDev

Well-Known Member
Licensed User
b4:
    Dim i As Intent
        i.Initialize(i.ACTION_VIEW,StorgGetPath)
        i.SetType( "resource/folder" )
        StartActivity(i)

Can I find something like this with b4i?
 

aeric

Expert
Licensed User
Longtime User
I did not find what I want in the link you referred me to. I want to open my application folder using the file explorer.
The resource folder for B4i app is File.DirDocuments

The link shared by Erel has this information.
- Make File.DirDocuments accessible with the built-in Files app: https://www.b4x.com/android/forum/t...les-accessible-with-files-app.133476/#content

Clicking the link opens the page with a Code Snippet.
All files in File.DirDocuments / XUI.DefaultFolder will be accessible from the Files app (and iTunes as well).
 
Upvote 0
Top