I am using the FTP plugin v1.0.1.0, with SF7 v7.0.6.1.
Firstly, I have noticed that file transfers are exceptionally slow in comparison with the DOS FTP client via a command prompt.
Secondly, I have found that the "FTP.SetTransferType" command appears to be completely ignored.
I have tried....
FTP.SetTransferType(FTP.BINARY);
....and....
FTP.SetTransferType(1);
Neither option appear to set Binary mode, so I am forced to use.....
-- Set Binary mode
FTP.Command("TYPE I");
-- Get the last responce
strLastResponse = FTP.GetLastResponse();
-- Check for 200 in the response (FTP server code for OK)
nLastResponce = String.Find(strLastResponse, "200", 1, false);
Although I can achieve the desired result, I have to go "around the houses" to get there.
Has anyone else had any problems with setting Binary mode with the "FTP.SetTransferType" command ??
Cheers......... Andy

