iOS Question Where can I find Listfiles(File.DirAssets) files on the iPAD?

davepamn

Active Member
Licensed User
Longtime User
B4X:
Dim flist As List

    flist=File.ListFiles(File.DirAssets)

    For i=0 To flist.Size-1

        Log(flist.Get(i))

    Next

The code logs data files in the files directory. However, If I remove the files, the same list appears. How can I find the files on the iPad and remove them?
 

davepamn

Active Member
Licensed User
Longtime User
I removed the app and then reinstalled it and the file.dirasset showed the correct file list.
 
Upvote 0
Top