Re: Which Net::FTP method for this?"
am 09.11.2005 20:42:53 von Eric Schwartzmailbox@cpacker.org writes:
> A. Sinan Unur wrote:
>> Well, the only FTP server I have access to does not accept cd, but using
>>
>> $ftp->quot(qw(cwd public_html));
>>
>> works for me.
>
>
> I've never connected to an FTP server that didn't accept "cd" entered
> at the prompt.
More accurately, you've never used an FTP client that didn't translate
"cd" into "CWD" for you. CWD is the raw FTP protocol command to
change the current working directory; you've been lead down the
primrose path by helpful clients that turn 'cd foo' into "CWD foo" for
you.
-=Eric