Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
2.3k views
in .NET FTP by (240 points)
Hi,

I believe the equivalent command for

quote site filetype=abc is "ftp.Site("filetype=abc")"

I have to issue a similar command to my mainframe remote server. The command I use currently is

Quote "site RECFM=FB LRECL=200 BLKSIZE=23400 CYLINDERS PRIMARY=5 SECONDARY=10 UNIT=HSM"

Would it be better to send this command with Quote or Site

i.e. How should I issue it

ftp.Site("RECFM=FB LRECL=200 BLKSIZE=23400 CYLINDERS PRIMARY=5 SECONDARY=10 UNIT=HSM")

or

ftp.Quote("quote RECFM=FB LRECL=200 BLKSIZE=23400 CYLINDERS PRIMARY=5 SECONDARY=10 UNIT=HSM")

Thanks a lot

1 Answer

0 votes
by (162k points)
The two below calls are equivalent. Take your pick.

Hi,

ftp.Site("RECFM=FB LRECL=200 BLKSIZE=23400 CYLINDERS PRIMARY=5 SECONDARY=10 UNIT=HSM")

or

ftp.Quote("quote RECFM=FB LRECL=200 BLKSIZE=23400 CYLINDERS PRIMARY=5 SECONDARY=10 UNIT=HSM")

Thanks a lot

Categories

...