hello all,
with library smb
use a listbox with this code to move into shared folders on the PC.
how can I go back one folder at a time?
thanks
with library smb
use a listbox with this code to move into shared folders on the PC.
how can I go back one folder at a time?
thanks
B4X:
Sub ListView2_ItemClick (Position As Int, Value As Object)
If str.EndsWith("/")=True Then
str= str & "" & Value
Else
str= str & "/" & Value
End If
SMB1.ListFiles(str, "")
Log(str)
End Sub