To list pdf file in current directory i use this code
How to obtain a file list order by name, size, date?
B4X:
For Each f As String In File.ListFiles(log_dir_pdf )
If f.ToLowerCase.EndsWith("pdf") Then
flexListaPdf.AddRow(Array As Object( f, "0","0"),True)
End If
bext
How to obtain a file list order by name, size, date?