Android Question File.Exists Always returns TRUE in File.GetSafeDirDefaultExternal ("")

Johan Hormaza

Well-Known Member
Licensed User
Longtime User
This is my code, there is always the file but it is not like that

B4X:
    Dim Rp As RuntimePermissions
    Dim DirFile As String
    DirFile = Rp.GetSafeDirDefaultExternal("Folder")
    If File.Exists(DirFile, "MyFile.db") Then
        Log("Yes Exists")
    End If
 
Last edited:
Top