- martin
Same as mine 1 hour earlier.
I tried to search the forum......
Dim Path() As String
Dim SourceFile As String
If source.Contains("/") Then
Path = source.Split("/")
SourceFile = Path(1)
Dim command As String = "CWD" & Path(0)
session.ExecuteCommand(command)
Else
SourceFile = source
End If
Dim transferResult As TransferOperationResult
transferResult = session.GetFiles(SourceFile, dest)
Same as mine 1 hour earlier.
I tried to search the forum......