Android Question Transfer Donwloaded files

Carlos Botafogo

New Member
Hello:

I am lookin for an answer for a very simple job:
I want to open and read attached files I've got from E_Mail and WhatsApp. What is the most prctical way yo do that ?
I am trying with the code bellow, but without good results.

B4X:
Dim argh As String
    argh = File.Combine(File.DirRootExternal, "Download")
    Log(argh)
    For Each FileName As String In File.ListFiles(argh)
        Log(FileName)
        ListView1.AddTextItem(FileName,50)
    Next

Thanx a lot.
 
Last edited:

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top