A user writes:
Is there a way to send a quote command using the java ftp client ?
I have to send a command before starting i.e. the get command.
In my case i need to send "quote site namefmt 1" to display a filesystem that your ftp client can understand and actually read.
Try something like:
ftp.quote("site namefmt 1");
ftp.get(...)