hexOffender
Programmer
I am working with the clsFTP class in a windowsForm app. The class can be found here:
I am having a problem getting the changeDirectory function to change the directory.
I know the directory is there, and I know my program is logging in correctly to the FTP server. I've tried different syntax for the parameter, but nothing seems to work.
I am having a problem getting the changeDirectory function to change the directory.
Code:
If (ff.ChangeDirectory("Report_Backups") = True) Then
'Successful changing the directory
MsgBox("Changed to Report_Backups directory", MsgBoxStyle.OKOnly)
end if
I know the directory is there, and I know my program is logging in correctly to the FTP server. I've tried different syntax for the parameter, but nothing seems to work.