Same problem
Hi Erel
I have the same problem.
When I look at the folders or files, theire are empty.
I'm test with Wincommander and I see all the folders and files, with the same permission.
All the variables are correct.
That's my code:
In Process Globals
Dim cFTP As FTP
In activity create
If FirstTime Then
cFTP.Initialize("FTP",FTPName,FTPPort,FTPLogin,FTPPass)
End If
In Button_Click
cFTP.List(FTPPath)
Sub FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry)
Log(ServerPath)
If Success = False Then
Log(LastException.Message)
Else
For i = 0 To Folders.Length - 1
Log(Folders(i).Name)
Next
For i = 0 To Files.Length - 1
Log(Files(i).Name & ", " & Files(i).Size & ", " & DateTime.Date(Files(i).Timestamp))
Next
End If
End Sub
The Folders return '[]' and the Files also.
Can you hepl us?
Thankx