+1 vote

We recently upgraded Ftp.dll from version 2.0.13282.1656 to 2.0.17017.1319 and without any code changes, started receiving the following error. I haven't been able to find any information about this in the forums. Any help would be appreciated. Thank you!

Method not found: 'Void Limilabs.FTP.Client.Ftp.ChangeFolder(System.String)'. ---> System.MissingMethodException: Method not found: 'Void Limilabs.FTP.Client.Ftp.ChangeFolder(System.String)'.

by (430 points)

1 Answer

0 votes

Ftp.ChangeFolder is still there: see Ftp.ChangeFolder Method documentation.

However it returns string not void - "Absolute path of the current working remote folder".

Dim f As Ftp = ...
Dim folder As String = f.ChangeFolder("folder")
by (297k points)
edited by
The application builds but the error is thrown at runtime....
...