Hi,
I need to run the following ftp command after connecting to the server:
quote site LRECL=200 RECFM=VB BLOCKSIZE=204 FILETYPE=SEQ CY PRI=10 SEC=2
I tried using the "Quote" function as follows:
string[] validCodes = new string[7] {"LRECL=200", "RECFM=VB", "BLOCKSIZE=204", "FILETYPE=SEQ", "CY", "PRI=10", "SEC=2"};
ftp.Quote("SITE", validCodes);
but I get the following error:
EnterpriseDT.Net.Ftp.FTPReply ValidateReply(EnterpriseDT.Net.Ftp.FTPReply, System.String[])
Description: SITE not necessary; you may proceed (code=202)
Could someone please point me to the right direction?
Thanks